diff --git a/.bazelrc b/.bazelrc index 9931842e7d152e956260e9e14dc7034db45d161d..6ecafcda4bf896d324562c319aca01989150a413 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,11 @@ -# Enable `bzlmod` -common --enable_bzlmod +# Authentication +common --credential_helper=gitlab.arm.com=%workspace%/.credentials.sh + +# `bzlmod` pre-release registries +common --registry https://bcr.bazel.build +common --registry=https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads +common --registry=https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads +common --registry=https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads # Build cache build --experimental_guard_against_concurrent_changes @@ -10,5 +16,8 @@ build --incompatible_strict_action_env # Prevent symlink forest under `.runfiles/wsname/external/repo` build --nolegacy_external_runfiles +# Avoid building all targets when testing +test --build_tests_only + # User-specific .bazelrc try-import %workspace%/.bazelrc.user diff --git a/.bazelrc.ci b/.bazelrc.ci index 5af25a132c84aad13448e0f353fc1307ab7576fd..f7e08f12d92b5d1df101a98d2ed50a4beb8f0fb0 100644 --- a/.bazelrc.ci +++ b/.bazelrc.ci @@ -22,9 +22,6 @@ common --attempt_to_print_relative_paths # Output as much information in the CI log about failures as possible build --verbose_failures -# Avoid building all targets when testing -test --build_tests_only - # Noisy logs but allows debugging CI run failures test --test_output=errors diff --git a/.bazelversion b/.bazelversion index 6543a03467f9e7a04e9ce102a32e3d1bf460789d..35907cd9caaf234e2f769bf782a28591cb894e1d 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1,2 +1 @@ -last_rc -# TODO: relax this once we have `use_rule_repo` +7.x diff --git a/.credentials.sh b/.credentials.sh new file mode 100755 index 0000000000000000000000000000000000000000..221c83d2ad2413bac949f2660eed3cc26ba52532 --- /dev/null +++ b/.credentials.sh @@ -0,0 +1,88 @@ +#! /bin/sh + +# https://github.com/bazelbuild/proposals/blob/main/designs/2022-06-07-bazel-credential-helpers.md +# https://github.com/docker/docker-credential-helpers + +# Strict shell +set -o errexit -o nounset + +# Validate the command +if test ${#} != 1; then + printf >&2 'Error: unexpected number of arguments: %s\n' "${#}" + exit 1 +elif test "${1}" != "get"; then + printf >&2 'Error: unexpected credentials command: %s\n' "${1}" + exit 1 +fi + +# Read in the JSON +while IFS= read -r LINE; do + printf >&2 'Error: unexpected newline on stdin: %s\n' "${LINE}" + exit 2 +done +JSON="${LINE}" +readonly JSON + +# "Process" the JSON +URI="${JSON}" +URI="${URI#*{}" +URI="${URI#*\"uri\"}" +URI="${URI#*:}" +URI="${URI#*\"}" +URI="${URI%\}*}" +URI="${URI%\"*}" +readonly URI +printf >&2 'URI: %s\n' "${URI}" + +# Grab the host +HOST="${URI}" +HOST="${HOST#https://}" +HOST="${HOST#http://}" +HOST="${HOST%%/*}" +readonly HOST +printf >&2 'HOST: %s\n' "${HOST}" + +# Attempt to parse the `.netrc` +if test -f "${HOME}/.netrc"; then + while IFS= read -r LINE <&3; do + # shellcheck disable=SC2249 + case "${LINE}" in + "machine "*"${HOST}") + while IFS= read -r LINE <&3; do + case "${LINE}" in + "machine "*) + break + ;; + "password "*) + printf >&2 'Using network run commands\n' + printf '{"headers":{"Authorization": ["Bearer %s"]}}\n' "${LINE##password }" + exit 0 + ;; + esac + done + ;; + esac + done 3<"${HOME}/.netrc" +fi + +if ! test -z ${BZLMOD_TOKEN+x}; then + printf >&2 'Using Bazel Module Token\n' + printf '{"headers":{"PRIVATE-TOKEN": ["%s"]}}\n' "${BZLMOD_TOKEN}" + exit 0 +fi + +if ! test -z ${GITLAB_TOKEN+x}; then + printf >&2 'Using GitLab Token\n' + printf '{"headers":{"PRIVATE-TOKEN": ["%s"]}}\n' "${GITLAB_TOKEN}" + exit 0 +fi + +if ! test -z ${CI_JOB_TOKEN+x}; then + printf >&2 'Using CI Job Token\n' + printf '{"headers":{"JOB-TOKEN": ["%s"]}}\n' "${CI_JOB_TOKEN}" + exit 0 +fi + +printf >&2 'No authentication found\n' +printf '{}\n' +exit 0 diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..7043786ce0374da6be4909a1b81ad940cb59b5a9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +max_line_length = 120 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +indent_size = 4 +tab_size = 4 +max_line_length = 88 diff --git a/.gitignore b/.gitignore index 78c9d9fcc1b1c779699443950ef5157e1d29f402..0878fd5122c1fc6fc6ca2105e25d3e2c17299870 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /.cache /bazel-bin /bazel-testlogs -/bazel-rules_placeholder +/bazel-rules_curl /bazel-out /.bazelrc.user +/node_modules diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c81760ff9ad4b41931a1c98988670d11eae7d611..eaaa491889be215a544a8f65b0a011f91de62947 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ include: - - component: "${CI_SERVER_HOST}/ci/component/bazelisk@v1.0.0-alpha.1" + - component: "${CI_SERVER_HOST}/ci/component/bazelisk@v1.0.0-beta.1" default: tags: @@ -13,3 +13,27 @@ test: - . - e2e +# TODO: switch this out for `rules_semantic_release` +semantic-release: + stage: .post + needs: + - test + image: node:lts + cache: + key: + prefix: "node" + files: + - package-lock.json + paths: + - node_modules + - .cache/npm + before_script: + - npm config --location project set cache "${CI_PROJECT_DIR}/.cache/npm" + - npm ci --prefer-offline + script: + - !reference [.bazelisk-fragment, rc] + - npx semantic-release + rules: + - if: $CI_COMMIT_TAG + when: never + - if: $CI_COMMIT_REF_PROTECTED == "true" diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000000000000000000000000000000000..8672edeb1030d4e97b81e55ee059c8d38214efec --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +registry=https://gitlab.arm.com/api/v4/groups/semantic-release/-/packages/npm/ diff --git a/.releaserc.yml b/.releaserc.yml new file mode 100644 index 0000000000000000000000000000000000000000..dd3ca3f0fbde2d948c7722a7c3b438e24e6131f9 --- /dev/null +++ b/.releaserc.yml @@ -0,0 +1,3 @@ +extends: + - "@semantic-release/config-release-channels" + - "@semantic-release/config-gitlab-bzlmod" diff --git a/.reuse/dep5 b/.reuse/dep5 new file mode 100644 index 0000000000000000000000000000000000000000..9beec11570bca212eb437e4d6104bae32eed9146 --- /dev/null +++ b/.reuse/dep5 @@ -0,0 +1,47 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: bazel/bsp +Upstream-Contact: Arm Ltd. +Source: https://gitlab.gpu.arm.com/bazel/bsp + +Files: + *.bazel + *.bzl + *.py + *.sh + *.sh.in + *.tmpl.* + *.patch +Copyright: 2023 Arm Ltd. +License: MIT + +Files: + icon.svg + package.json + package-lock.json + .releaserc.yml + */archive.tar.xz + ci/docker/*/Dockerfile + .bazelrc + .editorconfig + .eslintrc + .flake8 + .gitignore + */.gitignore + .gitlab-ci.yml + .isort.cfg + .mypy.ini + .pre-commit-config.yaml + .prettierrc + .gitignore + .bazelrc + babel.config.json + commitlint.config.js + test/py/requirements.in + test/py/requirements.txt + *.md + *.txt + *.xml + *.tar + *.deb +Copyright: 2023 Arm Ltd. +License: CC0-1.0 diff --git a/BUILD.bazel b/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..1e192bfb44706d55125fc76a427ef788cc1ff1d7 --- /dev/null +++ b/BUILD.bazel @@ -0,0 +1,11 @@ +alias( + name = "cli", + actual = "//curl/toolchain/cli:resolved", + visibility = ["//visibility:public"], +) + +alias( + name = "curl", + actual = ":cli", + visibility = ["//visibility:public"], +) diff --git a/LICENSES/CC0-1.0.txt b/LICENSES/CC0-1.0.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e259d42c996742e9e3cba14c677129b2c1b6311 --- /dev/null +++ b/LICENSES/CC0-1.0.txt @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt new file mode 100644 index 0000000000000000000000000000000000000000..037bb1c7a94c943879cc44070c1003a8ff8fb1cd --- /dev/null +++ b/LICENSES/MIT.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2023 Arm Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/MODULE.bazel b/MODULE.bazel index c56a26e8aa5fcea394237efbd753bf93a394cef7..9e106c0eab6032768595988bd7e6473896f56574 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,7 +1,26 @@ module( - name = "rules_placeholder", - version = "0.0.0", + name = "rules_curl", bazel_compatibility = [ - ">=6.4.0", + ">=7.0.0", ], ) + +bazel_dep(name = "rules_toolchain", version = "1.0.0-alpha.13") +bazel_dep(name = "rules_cosmos", version = "1.0.0-alpha.1") + +export = use_extension("@rules_toolchain//toolchain/export:defs.bzl", "toolchain_export") +use_repo(export, "cosmos-curl") +export.symlink( + name = "curl", + target = "@cosmos-curl", +) +use_repo(export, "curl") + +resolved = use_repo_rule("@rules_toolchain//toolchain/resolved:defs.bzl", "toolchain_resolved") + +resolved( + name = "resolved-curl", + toolchain_type = "//curl/toolchain/cli:type", +) + +register_toolchains("//curl/toolchain/cli:all") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index dc46c5dbc24d5767c2e25f5cd9d31656f6ee837c..b96aa1898444eabd64048518fe03ae3b9ec31a2b 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,9 +1,12 @@ { "lockFileVersion": 3, - "moduleFileHash": "bfe34180a91f3ff908710075c27bf5597532ff414e99589309e1cb2b4ab201e7", + "moduleFileHash": "4a6425584b697092e3c84bbd14261bdb9b1d46270aa03eef5c52346435e08c1e", "flags": { "cmdRegistries": [ - "https://bcr.bazel.build/" + "https://bcr.bazel.build", + "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads", + "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads", + "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads" ], "cmdModuleOverrides": {}, "allowedYankedVersions": [], @@ -17,16 +20,7531 @@ }, "moduleDepGraph": { "": { - "name": "rules_placeholder", - "version": "0.0.0", + "name": "rules_curl", + "version": "", "key": "", - "repoName": "rules_placeholder", + "repoName": "rules_curl", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//curl/toolchain/cli:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_toolchain//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 11, + "column": 23 + }, + "imports": { + "cosmos-curl": "cosmos-curl", + "curl": "curl" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "curl", + "target": "@cosmos-curl" + }, + "devDependency": false, + "location": { + "file": "@@//:MODULE.bazel", + "line": 13, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-curl": "resolved-curl" + }, + "devImports": [], + "tags": [ + { + "tagName": "@rules_toolchain//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//curl/toolchain/cli:type", + "name": "resolved-curl" + }, + "devDependency": false, + "location": { + "file": "@@//:MODULE.bazel", + "line": 21, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_toolchain": "rules_toolchain@1.0.0-alpha.13", + "rules_cosmos": "rules_cosmos@1.0.0-alpha.1", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + } + }, + "rules_toolchain@1.0.0-alpha.13": { + "name": "rules_toolchain", + "version": "1.0.0-alpha.13", + "key": "rules_toolchain@1.0.0-alpha.13", + "repoName": "rules_toolchain", "executionPlatformsToRegister": [], "toolchainsToRegister": [], - "extensionUsages": [], + "extensionUsages": [ + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_toolchain@1.0.0-alpha.13", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "local": "local", + "launcher": "launcher" + }, + "devImports": [], + "tags": [ + { + "tagName": "//toolchain/local/triplet:defs.bzl%toolchain_local_triplet", + "attributeValues": { + "name": "local" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 15, + "column": 8 + } + }, + { + "tagName": "//toolchain/launcher:repository.bzl%launcher", + "attributeValues": { + "name": "launcher" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 21, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.4.2", + "platforms": "platforms@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13", + "urls": [ + "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/src.tar.gz" + ], + "integrity": "sha512-U0P4j+XjPuAqtmKf9GqW4RPkIyAHUfm+V+9VtmYODKiK2FVtN2ZgH/XFphwvJbP/9Nh5Mqk8YBfg1ED1ObC/kA==", + "strip_prefix": "rules_toolchain-v1.0.0-alpha.13", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_cosmos@1.0.0-alpha.1": { + "name": "rules_cosmos", + "version": "1.0.0-alpha.1", + "key": "rules_cosmos@1.0.0-alpha.1", + "repoName": "rules_cosmos", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_cosmos@1.0.0-alpha.1", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "ape-arm64.elf": "ape-arm64.elf", + "ape-x86_64.elf": "ape-x86_64.elf", + "ape-x86_64.macho": "ape-x86_64.macho", + "ape.pe": "ape.pe", + "ape": "ape", + "ape-awk": "ape-awk", + "awk": "awk", + "ape-b2sum": "ape-b2sum", + "b2sum": "b2sum", + "ape-base32": "ape-base32", + "base32": "base32", + "ape-base64": "ape-base64", + "base64": "base64", + "ape-basename": "ape-basename", + "basename": "basename", + "ape-basenc": "ape-basenc", + "basenc": "basenc", + "ape-bash": "ape-bash", + "bash": "bash", + "ape-berry": "ape-berry", + "berry": "berry", + "ape-brotli": "ape-brotli", + "brotli": "brotli", + "ape-bzip2": "ape-bzip2", + "bzip2": "bzip2", + "ape-cat": "ape-cat", + "cat": "cat", + "ape-chcon": "ape-chcon", + "chcon": "chcon", + "ape-chgrp": "ape-chgrp", + "chgrp": "chgrp", + "ape-chmod": "ape-chmod", + "chmod": "chmod", + "ape-chown": "ape-chown", + "chown": "chown", + "ape-chroot": "ape-chroot", + "chroot": "chroot", + "ape-cksum": "ape-cksum", + "cksum": "cksum", + "ape-clang-format": "ape-clang-format", + "clang-format": "clang-format", + "ape-comm": "ape-comm", + "comm": "comm", + "ape-cp": "ape-cp", + "cp": "cp", + "ape-csplit": "ape-csplit", + "csplit": "csplit", + "ape-ctags": "ape-ctags", + "ctags": "ctags", + "ape-curl": "ape-curl", + "curl": "curl", + "ape-cut": "ape-cut", + "cut": "cut", + "ape-dash": "ape-dash", + "dash": "dash", + "ape-datasette": "ape-datasette", + "datasette": "datasette", + "ape-date": "ape-date", + "date": "date", + "ape-dd": "ape-dd", + "dd": "dd", + "ape-df": "ape-df", + "df": "df", + "ape-dir": "ape-dir", + "dir": "dir", + "ape-dircolors": "ape-dircolors", + "dircolors": "dircolors", + "ape-dirname": "ape-dirname", + "dirname": "dirname", + "ape-du": "ape-du", + "du": "du", + "ape-echo": "ape-echo", + "echo": "echo", + "ape-emacs": "ape-emacs", + "emacs": "emacs", + "ape-emacsclient": "ape-emacsclient", + "emacsclient": "emacsclient", + "ape-env": "ape-env", + "env": "env", + "ape-expand": "ape-expand", + "expand": "expand", + "ape-expr": "ape-expr", + "expr": "expr", + "ape-factor": "ape-factor", + "factor": "factor", + "ape-false": "ape-false", + "false": "false", + "ape-find": "ape-find", + "find": "find", + "ape-fmt": "ape-fmt", + "fmt": "fmt", + "ape-fold": "ape-fold", + "fold": "fold", + "ape-gmake": "ape-gmake", + "gmake": "gmake", + "ape-greenbean": "ape-greenbean", + "greenbean": "greenbean", + "ape-grep": "ape-grep", + "grep": "grep", + "ape-groups": "ape-groups", + "groups": "groups", + "ape-gzip": "ape-gzip", + "gzip": "gzip", + "ape-head": "ape-head", + "head": "head", + "ape-hello": "ape-hello", + "hello": "hello", + "ape-id": "ape-id", + "id": "id", + "ape-install": "ape-install", + "install": "install", + "ape-join": "ape-join", + "join": "join", + "ape-kill": "ape-kill", + "kill": "kill", + "ape-less": "ape-less", + "less": "less", + "ape-life": "ape-life", + "life": "life", + "ape-link": "ape-link", + "link": "link", + "ape-llama": "ape-llama", + "llama": "llama", + "ape-ln": "ape-ln", + "ln": "ln", + "ape-locate": "ape-locate", + "locate": "locate", + "ape-logname": "ape-logname", + "logname": "logname", + "ape-ls": "ape-ls", + "ls": "ls", + "ape-lua": "ape-lua", + "lua": "lua", + "ape-make": "ape-make", + "make": "make", + "ape-md5sum": "ape-md5sum", + "md5sum": "md5sum", + "ape-mkdir": "ape-mkdir", + "mkdir": "mkdir", + "ape-mkfifo": "ape-mkfifo", + "mkfifo": "mkfifo", + "ape-mknod": "ape-mknod", + "mknod": "mknod", + "ape-mktemp": "ape-mktemp", + "mktemp": "mktemp", + "ape-mktemper": "ape-mktemper", + "mktemper": "mktemper", + "ape-mv": "ape-mv", + "mv": "mv", + "ape-nano": "ape-nano", + "nano": "nano", + "ape-nesemu1": "ape-nesemu1", + "nesemu1": "nesemu1", + "ape-nice": "ape-nice", + "nice": "nice", + "ape-ninja": "ape-ninja", + "ninja": "ninja", + "ape-nl": "ape-nl", + "nl": "nl", + "ape-nohup": "ape-nohup", + "nohup": "nohup", + "ape-nproc": "ape-nproc", + "nproc": "nproc", + "ape-numfmt": "ape-numfmt", + "numfmt": "numfmt", + "ape-od": "ape-od", + "od": "od", + "ape-paste": "ape-paste", + "paste": "paste", + "ape-pathchk": "ape-pathchk", + "pathchk": "pathchk", + "ape-pigz": "ape-pigz", + "pigz": "pigz", + "ape-pinky": "ape-pinky", + "pinky": "pinky", + "ape-pledge": "ape-pledge", + "pledge": "pledge", + "ape-pr": "ape-pr", + "pr": "pr", + "ape-printenv": "ape-printenv", + "printenv": "printenv", + "ape-printf": "ape-printf", + "printf": "printf", + "ape-printimage": "ape-printimage", + "printimage": "printimage", + "ape-ptx": "ape-ptx", + "ptx": "ptx", + "ape-pwd": "ape-pwd", + "pwd": "pwd", + "ape-python": "ape-python", + "python": "python", + "ape-qjs": "ape-qjs", + "qjs": "qjs", + "ape-readlink": "ape-readlink", + "readlink": "readlink", + "ape-realpath": "ape-realpath", + "realpath": "realpath", + "ape-redbean": "ape-redbean", + "redbean": "redbean", + "ape-rm": "ape-rm", + "rm": "rm", + "ape-rmdir": "ape-rmdir", + "rmdir": "rmdir", + "ape-rsync": "ape-rsync", + "rsync": "rsync", + "ape-runcon": "ape-runcon", + "runcon": "runcon", + "ape-script": "ape-script", + "script": "script", + "ape-sed": "ape-sed", + "sed": "sed", + "ape-seq": "ape-seq", + "seq": "seq", + "ape-sha1sum": "ape-sha1sum", + "sha1sum": "sha1sum", + "ape-sha224sum": "ape-sha224sum", + "sha224sum": "sha224sum", + "ape-sha256sum": "ape-sha256sum", + "sha256sum": "sha256sum", + "ape-sha384sum": "ape-sha384sum", + "sha384sum": "sha384sum", + "ape-sha512sum": "ape-sha512sum", + "sha512sum": "sha512sum", + "ape-shred": "ape-shred", + "shred": "shred", + "ape-shuf": "ape-shuf", + "shuf": "shuf", + "ape-sleep": "ape-sleep", + "sleep": "sleep", + "ape-sort": "ape-sort", + "sort": "sort", + "ape-split": "ape-split", + "split": "split", + "ape-sqlite3": "ape-sqlite3", + "sqlite3": "sqlite3", + "ape-stat": "ape-stat", + "stat": "stat", + "ape-stty": "ape-stty", + "stty": "stty", + "ape-sum": "ape-sum", + "sum": "sum", + "ape-sync": "ape-sync", + "sync": "sync", + "ape-tac": "ape-tac", + "tac": "tac", + "ape-tail": "ape-tail", + "tail": "tail", + "ape-tar": "ape-tar", + "tar": "tar", + "ape-tee": "ape-tee", + "tee": "tee", + "ape-test": "ape-test", + "test": "test", + "ape-tidy": "ape-tidy", + "tidy": "tidy", + "ape-timeout": "ape-timeout", + "timeout": "timeout", + "ape-tmux": "ape-tmux", + "tmux": "tmux", + "ape-touch": "ape-touch", + "touch": "touch", + "ape-tr": "ape-tr", + "tr": "tr", + "ape-tree": "ape-tree", + "tree": "tree", + "ape-true": "ape-true", + "true": "true", + "ape-truncate": "ape-truncate", + "truncate": "truncate", + "ape-tsort": "ape-tsort", + "tsort": "tsort", + "ape-tty": "ape-tty", + "tty": "tty", + "ape-ttyinfo": "ape-ttyinfo", + "ttyinfo": "ttyinfo", + "ape-uname": "ape-uname", + "uname": "uname", + "ape-unbourne": "ape-unbourne", + "unbourne": "unbourne", + "ape-unexpand": "ape-unexpand", + "unexpand": "unexpand", + "ape-uniq": "ape-uniq", + "uniq": "uniq", + "ape-unlink": "ape-unlink", + "unlink": "unlink", + "ape-unzip": "ape-unzip", + "unzip": "unzip", + "ape-uptime": "ape-uptime", + "uptime": "uptime", + "ape-users": "ape-users", + "users": "users", + "ape-vdir": "ape-vdir", + "vdir": "vdir", + "ape-verynice": "ape-verynice", + "verynice": "verynice", + "ape-vim": "ape-vim", + "vim": "vim", + "ape-wall": "ape-wall", + "wall": "wall", + "ape-wc": "ape-wc", + "wc": "wc", + "ape-wget": "ape-wget", + "wget": "wget", + "ape-who": "ape-who", + "who": "who", + "ape-whoami": "ape-whoami", + "whoami": "whoami", + "ape-xargs": "ape-xargs", + "xargs": "xargs", + "ape-xz": "ape-xz", + "xz": "xz", + "ape-yes": "ape-yes", + "yes": "yes", + "ape-zip": "ape-zip", + "zip": "zip", + "ape-zsh": "ape-zsh", + "zsh": "zsh", + "ape-zstd": "ape-zstd", + "zstd": "zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WYUckbagilfXA6pgyoWnuG22V0kI58PhpOS+0CDa+UE=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-arm64.elf" + ], + "name": "ape-arm64.elf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-q/Oxu3GCk1v0jZjcFDxR7lY9KaH9LDkw/1qNjI2COBc=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.elf" + ], + "name": "ape-x86_64.elf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oWyPo217RZYmTNW3k1MEYOLbBa8LG8fF4zSIfim5OJU=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.macho" + ], + "name": "ape-x86_64.macho" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "//cosmos/ape/pe:repository.bzl%pe", + "attributeValues": { + "name": "ape.pe" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 32, + "column": 3 + } + }, + { + "tagName": "@rules_toolchain//toolchain/local/select:defs.bzl%toolchain_local_select", + "attributeValues": { + "map": { + "arm64-linux": "@ape-arm64.elf", + "amd64-linux": "@ape-x86_64.elf", + "amd64-darwin": "@ape-x86_64.macho", + "windows": "@ape.pe" + }, + "name": "ape" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 36, + "column": 7 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-L/6XCQ5vyGlel2rAz5z1Nn+cjWA4rXRaMDBB/A1B1Ao=", + "output": "awk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/awk" + ], + "name": "ape-awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-awk//:awk", + "name": "awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-GaoSlpwiXeZg5KgFv6Y6FYutDVmtaO6as4RrIt6AjNY=", + "output": "b2sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/b2sum" + ], + "name": "ape-b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-b2sum//:b2sum", + "name": "b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KVJ2LDlzO6LUN1Cip3d26ZLqJeNkICPEr1CEtYdEkLY=", + "output": "base32", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base32" + ], + "name": "ape-base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-base32//:base32", + "name": "base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-L6BS6aci/th7ucw7/y5A2MIqfLBT95RhyEfI5siuy/s=", + "output": "base64", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base64" + ], + "name": "ape-base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-base64//:base64", + "name": "base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+TZAyOcWht66lllJlbQwKqIt1jk4CVf1/goI6HnIVlE=", + "output": "basename", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basename" + ], + "name": "ape-basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-basename//:basename", + "name": "basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-NgGicKW9uV+5xc/oSEExuH/PleJOnwCDebhk7stAZV8=", + "output": "basenc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basenc" + ], + "name": "ape-basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-basenc//:basenc", + "name": "basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-uH/5vCQx2dWsxfMY31QUJPB5Vz2x+pK9nQ3XolULIm8=", + "output": "bash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bash" + ], + "name": "ape-bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-bash//:bash", + "name": "bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3tGWs2Yc0rGqmlx1W50Fe3Tswvl2EsmxEABOR02yOZA=", + "output": "berry", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/berry" + ], + "name": "ape-berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-berry//:berry", + "name": "berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0x3bS2BFsgpLw/cnInch54BZzMw0aHHMcgvquLKmYK0=", + "output": "brotli", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/brotli" + ], + "name": "ape-brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-brotli//:brotli", + "name": "brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Teep6rhoNrBVRMgaOLRsAyq1s4iKk6KKITgU4l51qZA=", + "output": "bzip2", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bzip2" + ], + "name": "ape-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-bzip2//:bzip2", + "name": "bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-QlCeHxjEgWfBY7LQiADHJi+uudTo+oTHpaL8Dlorj2c=", + "output": "cat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cat" + ], + "name": "ape-cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cat//:cat", + "name": "cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9U+eUXrFnsdjYcD0035Kg3XC1J0gU28hK6dxPlsw2G0=", + "output": "chcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chcon" + ], + "name": "ape-chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chcon//:chcon", + "name": "chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7R+QACW3Sz/D2ZBKyhqEykwHou6Insee01eHqXdiqHo=", + "output": "chgrp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chgrp" + ], + "name": "ape-chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chgrp//:chgrp", + "name": "chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Ml5b42b7YHBO0xzeIfiN5ohBOSdPDveS8RZfoPHlFaI=", + "output": "chmod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chmod" + ], + "name": "ape-chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chmod//:chmod", + "name": "chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-SmjdbLY0UkHq+EbIWbMmpCexmhQB/29KWONWzRTyIys=", + "output": "chown", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chown" + ], + "name": "ape-chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chown//:chown", + "name": "chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-o2xdphc+QwJ8vR7uRVl8xPXQHY5eHCIGeNwp8Nxc8SA=", + "output": "chroot", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chroot" + ], + "name": "ape-chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chroot//:chroot", + "name": "chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WitBRvVH+cPbvXGlOwVyqMV2lgeF0BPOpG5ImGmLzEU=", + "output": "cksum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cksum" + ], + "name": "ape-cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cksum//:cksum", + "name": "cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", + "output": "clang-format", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/clang-format" + ], + "name": "ape-clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-clang-format//:clang-format", + "name": "clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ivuJjEm5AYm6076eXwc7FDqz2UZX9LSt0EQ3YoQFnzE=", + "output": "comm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/comm" + ], + "name": "ape-comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-comm//:comm", + "name": "comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-zGVr2Bk0dhRWVt7KeuFkfbRX//yCwQl0MV8xi34ruiE=", + "output": "cp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cp" + ], + "name": "ape-cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cp//:cp", + "name": "cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rs3yGq0E94Yh0tcSxHj2xvafSYjJDXezNS2eGO+f5Do=", + "output": "csplit", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/csplit" + ], + "name": "ape-csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-csplit//:csplit", + "name": "csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-NNiDbnKgZs9THRXW35GQF3BrYRixcVpImYUa9iZoPdY=", + "output": "ctags", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ctags" + ], + "name": "ape-ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ctags//:ctags", + "name": "ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pOPeSvp3FWm0T6YJha6w4NwWzKKsOvBkiRbO7RD+YM4=", + "output": "curl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/curl" + ], + "name": "ape-curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-curl//:curl", + "name": "curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0Xu9tbCWY2ErB1Vu5klLuCGAlmub3xRk/RawWWoFr48=", + "output": "cut", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cut" + ], + "name": "ape-cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cut//:cut", + "name": "cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-e28n45l75Tr8cHF+DX3qNe6nmZhyJDgLzMF2tJSZbQ8=", + "output": "dash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dash" + ], + "name": "ape-dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dash//:dash", + "name": "dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+2/MHG8dryuDNU9pFCHiJbpMoJZoG/0/iAf7ZivBpGU=", + "output": "datasette", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/datasette" + ], + "name": "ape-datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-datasette//:datasette", + "name": "datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9YUybnuf7F6NLvs7+15+4KKzevTRX0brPA3jv3ZZgro=", + "output": "date", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/date" + ], + "name": "ape-date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-date//:date", + "name": "date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9xs6mcP3zWEXNknfaYEw7mCZsEveFTIX8skJRnBQ+R8=", + "output": "dd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dd" + ], + "name": "ape-dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dd//:dd", + "name": "dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0C+RoZ6SaQ9bPVVwfmyZdP5L1SykDZFMvFXHjvQ8jl8=", + "output": "df", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/df" + ], + "name": "ape-df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-df//:df", + "name": "df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-p7/SAjoYD2yZmZSkceNdo824CB5b2YJQ5m2c86Qwoxo=", + "output": "dir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dir" + ], + "name": "ape-dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dir//:dir", + "name": "dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-BfWp8zUwsqKXRhdxeluvuhdBYV9EZuMgw0WZDvpUnMI=", + "output": "dircolors", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dircolors" + ], + "name": "ape-dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dircolors//:dircolors", + "name": "dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-do7L0xWqE6r0UxcVKXNOh/N7SEh2cBrfQLp2y3dpp/c=", + "output": "dirname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dirname" + ], + "name": "ape-dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dirname//:dirname", + "name": "dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+43j5Ov8EZ4CcXBOJFP+b3DaLWqavwTGZeJ/L5GQUNk=", + "output": "du", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/du" + ], + "name": "ape-du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-du//:du", + "name": "du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oaBC3x4Ts+CEI2UqM/YI8k1q5Ud/J2UQfWH4IILALmw=", + "output": "echo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/echo" + ], + "name": "ape-echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-echo//:echo", + "name": "echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7FDLQVDS6sBwWICaONqCfRcIw0w7tWecYmq9/UE4zog=", + "output": "emacs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacs" + ], + "name": "ape-emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-emacs//:emacs", + "name": "emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-4j4g4s81gPzye27bASo4wmPOu2p80I8uIzMFC1QVSME=", + "output": "emacsclient", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacsclient" + ], + "name": "ape-emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-emacsclient//:emacsclient", + "name": "emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-bfKNgkpnGRStT5QfHgZcC0RJFd4VLJbgLthU010iSGo=", + "output": "env", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/env" + ], + "name": "ape-env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-env//:env", + "name": "env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-eRZ9h8oUqb0KV+ZU0heHtItPEkHMYltd+tEAitzB1Hw=", + "output": "expand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expand" + ], + "name": "ape-expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-expand//:expand", + "name": "expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3W0o/RomE/No9tbYhLfwa1X3WuPUde/EJGZLKM9uRhA=", + "output": "expr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expr" + ], + "name": "ape-expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-expr//:expr", + "name": "expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-78brRdtq90rnwCvLDALn8Qbm5adFdD5i18I6EACGfms=", + "output": "factor", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/factor" + ], + "name": "ape-factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-factor//:factor", + "name": "factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-djpJwmPkS77w3B/DbNkrFKnw8FDiMTZs/kNSfvqE2Xk=", + "output": "false", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/false" + ], + "name": "ape-false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-false//:false", + "name": "false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-QgZxkbiCL6dWewPSV1CYhg2D6+Trfy4ezGIZ/xsTs8c=", + "output": "find", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/find" + ], + "name": "ape-find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-find//:find", + "name": "find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3EVsR8K0vlkhxK+eMBg57euCI28PcXS5I1sITgqpm58=", + "output": "fmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fmt" + ], + "name": "ape-fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-fmt//:fmt", + "name": "fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-R7i2ybtDZwR0r9pt46w53Jsx6D2aeG362M3wOpTrvwE=", + "output": "fold", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fold" + ], + "name": "ape-fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-fold//:fold", + "name": "fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-kVx885AMt0pUw30vMkQHq6nfcpzGyLJaxnNmFgoqI9U=", + "output": "gmake", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gmake" + ], + "name": "ape-gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-gmake//:gmake", + "name": "gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-LpIS0vOtJ6tzc24IFVnKCs7t0ihVxUFVTm3+tJAa9rs=", + "output": "greenbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/greenbean" + ], + "name": "ape-greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-greenbean//:greenbean", + "name": "greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IC0TekjEN6KK3qT0VYK7hMTc5kjrXTFvBXKE3AiO2kY=", + "output": "grep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/grep" + ], + "name": "ape-grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-grep//:grep", + "name": "grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-UR05dumcot/bQe03vUnwmdAPVA+tuWIT6xyU+NQP7P4=", + "output": "groups", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/groups" + ], + "name": "ape-groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-groups//:groups", + "name": "groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-PxwuXMmyoi44qXAQ+/zi10RRjLz1S3FDvtGCZxNxOGI=", + "output": "gzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gzip" + ], + "name": "ape-gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-gzip//:gzip", + "name": "gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jB9uy/H8iOFVHaAF+ew1M4VuqyfrlZjDI3bI5/fBji0=", + "output": "head", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/head" + ], + "name": "ape-head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-head//:head", + "name": "head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-wmz/Gry0Ut1TOEod3y81+iyNcmKw9r5ugEOScfLpUqQ=", + "output": "hello", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/hello" + ], + "name": "ape-hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-hello//:hello", + "name": "hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-m7Dk9LU9pFAyGT1mErMwItce1FrErS0bRGsQ7bayGag=", + "output": "id", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/id" + ], + "name": "ape-id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-id//:id", + "name": "id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KWRc7xVYg+Wekm7EwrGvEuz6yFOdgB1yvLTV63GNCV4=", + "output": "install", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/install" + ], + "name": "ape-install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-install//:install", + "name": "install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-EdLcVV+qVnxLMumDbLQs0MSQ7wrOiI06c78haOT+Ck8=", + "output": "join", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/join" + ], + "name": "ape-join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-join//:join", + "name": "join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-b4UufNPgWz55yHR+k5OdwTBZyVBjY6WtVZ4HEMLr30I=", + "output": "kill", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/kill" + ], + "name": "ape-kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-kill//:kill", + "name": "kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-enwicIhlycMwQttEmHsWpx00m20nqIS/DLt4IHO0I8g=", + "output": "less", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/less" + ], + "name": "ape-less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-less//:less", + "name": "less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rhmCu+Ub8OrG4CH9Hnwgw2oQVWf8RTpX2oNTKSEKeZM=", + "output": "life", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/life" + ], + "name": "ape-life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-life//:life", + "name": "life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-h2MKF11tX3LnkVF2aZYHTKGqjrmqDfTQNF+vW/LGMyM=", + "output": "link", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/link" + ], + "name": "ape-link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-link//:link", + "name": "link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8EVOk68eZ4AZJ2h8AmmlgfV2gHj52zzdLx9ibJaYmfE=", + "output": "llama", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/llama" + ], + "name": "ape-llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-llama//:llama", + "name": "llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-FriLh1k6Cl11yTHswZVVsJPlF+Sc9JT6uRjhKzjEW64=", + "output": "ln", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ln" + ], + "name": "ape-ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ln//:ln", + "name": "ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7nM47L1FPFcKgrayInKIjFBPUmJP9Vi5YC4jS+syHRQ=", + "output": "locate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/locate" + ], + "name": "ape-locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-locate//:locate", + "name": "locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-72+wGF+sClLqYuj1Drnjxv/ABYnYB7DC35n2tvg5bX4=", + "output": "logname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/logname" + ], + "name": "ape-logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-logname//:logname", + "name": "logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rey5QIeu21UB4L3U6ZIngaeZl1WOcViPZmpJ3URvDZM=", + "output": "ls", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ls" + ], + "name": "ape-ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ls//:ls", + "name": "ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-lPF7Jd3+IliCpCzgrry/d+o6LtPDwEdGKJvk+SoKDtQ=", + "output": "lua", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/lua" + ], + "name": "ape-lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-lua//:lua", + "name": "lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jmbPzMhemQqBcAE4sPyOoI0pzjSo13nykAhsq3Jn+pc=", + "output": "make", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/make" + ], + "name": "ape-make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-make//:make", + "name": "make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-kA7ySZfp8NGFzeFMVq5e5BBm/ELxgTNTBkH9kXY5lhQ=", + "output": "md5sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/md5sum" + ], + "name": "ape-md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-md5sum//:md5sum", + "name": "md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-LxEoIRmJVcdgA5nnYMEyuWhtJALz7rfKdQza3UY9EXs=", + "output": "mkdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkdir" + ], + "name": "ape-mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mkdir//:mkdir", + "name": "mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DsS9Q0qSnAtpQplF96sPs3cJfF62P6ic7K9THDD3J9U=", + "output": "mkfifo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkfifo" + ], + "name": "ape-mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mkfifo//:mkfifo", + "name": "mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2yKTh4pUH4nzZnsJzmm9YDALPEfJ1p46iVjqTsibNac=", + "output": "mknod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mknod" + ], + "name": "ape-mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mknod//:mknod", + "name": "mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-r568xzQ0RYW07Lx/dMEN2oued14nY8/bCwWU0l8RNdM=", + "output": "mktemp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemp" + ], + "name": "ape-mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mktemp//:mktemp", + "name": "mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-mXjgWQ8ta7rsqg9NI3AnfCaEbJ0OxpSZCHoDLTn9T9w=", + "output": "mktemper", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemper" + ], + "name": "ape-mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mktemper//:mktemper", + "name": "mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rX1wfzu57rdGXsELlWaUyL7YTeUyoywFGIXrrKoUQGE=", + "output": "mv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mv" + ], + "name": "ape-mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mv//:mv", + "name": "mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-tEZ6Ifz9IFuJryEURc6RaDjZxg7iVFvxSDvYRnhpVv0=", + "output": "nano", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nano" + ], + "name": "ape-nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nano//:nano", + "name": "nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jSgFpOEgglaFDd5IgVEwV9DD7OJEhoBBI6vddGcS1Lo=", + "output": "nesemu1", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nesemu1" + ], + "name": "ape-nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nesemu1//:nesemu1", + "name": "nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WY4vdvaY+uwqkeUupUdaWjEgSZrqWQAOkUBcrEzzppY=", + "output": "nice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nice" + ], + "name": "ape-nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nice//:nice", + "name": "nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ALAx5OFud0Ny0lHENIykc1LfRsBH39NqHmbkSnXpRxw=", + "output": "ninja", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ninja" + ], + "name": "ape-ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ninja//:ninja", + "name": "ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7NTNrkFQWXoNt6GCrQyRFPC/drWHtJUKOU9LkA1SeVE=", + "output": "nl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nl" + ], + "name": "ape-nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nl//:nl", + "name": "nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ov0ymvfz+iqToWIHgLZ9GvlUVLCWsvAT2n1kHetfZi0=", + "output": "nohup", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nohup" + ], + "name": "ape-nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nohup//:nohup", + "name": "nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7P5oDE/hBe3o18+xaWLuEix1uVnJH7V4/aDNyPXcz/A=", + "output": "nproc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nproc" + ], + "name": "ape-nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nproc//:nproc", + "name": "nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-cVaJG53XE2JmCyHtCQhi7tzSor9kdmWZWhI/ZkYwr/I=", + "output": "numfmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/numfmt" + ], + "name": "ape-numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-numfmt//:numfmt", + "name": "numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gNNnixyQNkBE1oHBSE0O7R8uTCCZNZupBtqO7Wx+xds=", + "output": "od", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/od" + ], + "name": "ape-od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-od//:od", + "name": "od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-fSqWz5Qt32pnmjpCcqKf8Eq2uQK3A+kBLbJKIhgLGbs=", + "output": "paste", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/paste" + ], + "name": "ape-paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-paste//:paste", + "name": "paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+pJKNxAm1PzPrAQbQOSiEeMDgohv34nRNglLt58JRhM=", + "output": "pathchk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pathchk" + ], + "name": "ape-pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pathchk//:pathchk", + "name": "pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-neR0INVhYPonCUWyMbownwG8pXc/+WZEoG1tGSOCcnk=", + "output": "pigz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pigz" + ], + "name": "ape-pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pigz//:pigz", + "name": "pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-qktEtm4kQY+NZdthnl7vM6QFI1ieOziMWJa25szI0BU=", + "output": "pinky", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pinky" + ], + "name": "ape-pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pinky//:pinky", + "name": "pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DBuoptCsEnxtUfCdnJwpMhgiLOk+j6WqGRBWq7XHVlQ=", + "output": "pledge", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pledge" + ], + "name": "ape-pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pledge//:pledge", + "name": "pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Txiw5w8jFGhOwNgIRFKrFnhfgRHgF6Kj7dpX8RVAfjE=", + "output": "pr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pr" + ], + "name": "ape-pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pr//:pr", + "name": "pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gIviB/AfzVcC3rT+Tm+JWVq05aAmVjl4NYmaTvD97R4=", + "output": "printenv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printenv" + ], + "name": "ape-printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printenv//:printenv", + "name": "printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-XJ+5nYvXQosvg0fmt0TqxyogQFl4TOmOVECybqQCAQI=", + "output": "printf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printf" + ], + "name": "ape-printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printf//:printf", + "name": "printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ETGvBd5ixJMIoW6oMM1prijnvrjL2geCTBwP699jKyw=", + "output": "printimage", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printimage" + ], + "name": "ape-printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printimage//:printimage", + "name": "printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-CXfqZ6zGWs/PzOLzNoDaPqS2XIK/KMWRsvFBBfx/CeQ=", + "output": "ptx", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ptx" + ], + "name": "ape-ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ptx//:ptx", + "name": "ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-fc9y/oBB2uWbz2n2YMO5E+USOKnSVjJ2B7vezHe83Z0=", + "output": "pwd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pwd" + ], + "name": "ape-pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pwd//:pwd", + "name": "pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-autrcdsbwpu7HyiXjIqUjwKG5gtTwBxJxORs0xIrZiw=", + "output": "python", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/python" + ], + "name": "ape-python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-python//:python", + "name": "python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IzMWyCtBfHbGx/RH+PWgEVs1M1lCTIjEMZ4T8jGLLLs=", + "output": "qjs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/qjs" + ], + "name": "ape-qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-qjs//:qjs", + "name": "qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-sk17dpwRyzcrbmrMdo5BTaEAeuPL46dvJt1N9FTA9/4=", + "output": "readlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/readlink" + ], + "name": "ape-readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-readlink//:readlink", + "name": "readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-57coUej2pyRKuIb0maayHqEHeyefv4iKI7DdJHdlfmk=", + "output": "realpath", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/realpath" + ], + "name": "ape-realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-realpath//:realpath", + "name": "realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-AxMjGqvfEQeZMJeDd2coCtTw/P28uQ5vFnuk3DARdIw=", + "output": "redbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/redbean" + ], + "name": "ape-redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-redbean//:redbean", + "name": "redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Q752EgtwP86tjdOteCOn3AUm5bFDzQmP/09FqgLY8vs=", + "output": "rm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rm" + ], + "name": "ape-rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rm//:rm", + "name": "rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-5hJEvqD9v8jZyllDfAXnQkV0IbE0TbE9TTzn3kKKKSw=", + "output": "rmdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rmdir" + ], + "name": "ape-rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rmdir//:rmdir", + "name": "rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-yieoMPKMhaU/V/N1lFVm0n+ssgZyOeyA5A8OMKW8Ouc=", + "output": "rsync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rsync" + ], + "name": "ape-rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rsync//:rsync", + "name": "rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-y3o+vzi9pJfuCIXkwKu9LFBmVUiw6vFHru+S/OrRcLc=", + "output": "runcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/runcon" + ], + "name": "ape-runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-runcon//:runcon", + "name": "runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DIoiCjveTxmW/wKXIRbGE3V+ct/9beJpPSGL8CZn1vA=", + "output": "script", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/script" + ], + "name": "ape-script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-script//:script", + "name": "script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-iPJJjP+GqFo8EqsBZsHRt9VChDniS53ADifknrFJAiA=", + "output": "sed", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sed" + ], + "name": "ape-sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sed//:sed", + "name": "sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-mXtquMhfoIHY2ZWQuJHPjzyyIKwaNK4bQ8kBfJ/7pI4=", + "output": "seq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/seq" + ], + "name": "ape-seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-seq//:seq", + "name": "seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2jTRBDjQXmilIHJNXlwDUTQBRwp7SIC1trWdG8F90Y0=", + "output": "sha1sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha1sum" + ], + "name": "ape-sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha1sum//:sha1sum", + "name": "sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8/xMb0Po8frP7QMxDoCU1XNQJVVVKe6oD2BUZRe5y6k=", + "output": "sha224sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha224sum" + ], + "name": "ape-sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha224sum//:sha224sum", + "name": "sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HNquOwLp4buMX/w+duu6gd7y0ORk2Pj9zWrnRCiN6nw=", + "output": "sha256sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha256sum" + ], + "name": "ape-sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha256sum//:sha256sum", + "name": "sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-C4FfhXjU+Az4MapjJDds85brDx2cHrMw7vTkWQBm3wI=", + "output": "sha384sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha384sum" + ], + "name": "ape-sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha384sum//:sha384sum", + "name": "sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-FrR/KCVAtAFbLJJZCyrNFgWlU1dYpVBZSbSok7/kUF4=", + "output": "sha512sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha512sum" + ], + "name": "ape-sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha512sum//:sha512sum", + "name": "sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-bW0aU82OyvAe/T+I+18/5iuahYAORME4L+p2GGMkk1Y=", + "output": "shred", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shred" + ], + "name": "ape-shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-shred//:shred", + "name": "shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HneyotcGba+4xEvzuQZxbOnbUIhFXfVI8z/d1oeLX8k=", + "output": "shuf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shuf" + ], + "name": "ape-shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-shuf//:shuf", + "name": "shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-MRRvz2YSJneo3hsLJB5u8bawx4xhOfokLI+tEQJmuhM=", + "output": "sleep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sleep" + ], + "name": "ape-sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sleep//:sleep", + "name": "sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3VKAHVlzBqpWHS5tJ0OtBnU7sGnZ1EUSU8tuGWuv988=", + "output": "sort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sort" + ], + "name": "ape-sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sort//:sort", + "name": "sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-XmJ7RebkB6nkQQooH9oVYtLV7IS6JJUabBSBspyNFqU=", + "output": "split", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/split" + ], + "name": "ape-split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-split//:split", + "name": "split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Xe33hi2k4XRz86fO95x2DkVIfL5T00pUVWXooJ29bH8=", + "output": "sqlite3", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sqlite3" + ], + "name": "ape-sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sqlite3//:sqlite3", + "name": "sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-PEG4bpiGGf4b8NMrA5R36orjqwfRv2QrA+olwygBgk4=", + "output": "stat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stat" + ], + "name": "ape-stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-stat//:stat", + "name": "stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9Jpvfj5Zb6pHwGl1PsHcc346INa84bTW8YuLokfWmt0=", + "output": "stty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stty" + ], + "name": "ape-stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-stty//:stty", + "name": "stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HcpxfiyXFRbrMjJbMKI2kzzm+kklXDvrjk7bN01Z7+g=", + "output": "sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sum" + ], + "name": "ape-sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sum//:sum", + "name": "sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-dQUkTupPw1XWw+KiWVk3C3UVOCJsHzpgaaRL6+c5fi4=", + "output": "sync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sync" + ], + "name": "ape-sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sync//:sync", + "name": "sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-RKVo9/vao5NrHBJw8q4djRyZAIhZXGXC6C1IOPh0RVE=", + "output": "tac", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tac" + ], + "name": "ape-tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tac//:tac", + "name": "tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pkCcuNP1NP8PoXSPOjNQxcCd++Ha9fKEhcL40h2vhs8=", + "output": "tail", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tail" + ], + "name": "ape-tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tail//:tail", + "name": "tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-UqpsW/LDOtJE4AkPLvSgU54kQPF0L2JW8nB6cUx2eeU=", + "output": "tar", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tar" + ], + "name": "ape-tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tar//:tar", + "name": "tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3icXvzVLCKaIiwyhbK8d5xsaKVS1FsrlFqa46n5UsgA=", + "output": "tee", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tee" + ], + "name": "ape-tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tee//:tee", + "name": "tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rAM1etW/Sh6QiwIEKYJ8wTeMdGrS7JXlZLxvN3WOpJY=", + "output": "test", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/test" + ], + "name": "ape-test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-test//:test", + "name": "test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ino0vYiVbVN3iWPg2QkkAhkt0/6rpQV4gByQOy8Anko=", + "output": "tidy", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tidy" + ], + "name": "ape-tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tidy//:tidy", + "name": "tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-I2cheet197QEuPUUm/vwFd3aa2kbpjS74lWkRPnB4nM=", + "output": "timeout", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/timeout" + ], + "name": "ape-timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-timeout//:timeout", + "name": "timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-YXa8jhJI9onfgaqZBSibiqhTVmrV0m8nVABlX4y2Rq0=", + "output": "tmux", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tmux" + ], + "name": "ape-tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tmux//:tmux", + "name": "tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IbTnhZPtsp0MVR5YMbPbydQoZW4fdkK+zpLUWzniLMs=", + "output": "touch", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/touch" + ], + "name": "ape-touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-touch//:touch", + "name": "touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2dRx5qpg0gK54dSSIvLX65hXsSDSf0aqSVEqOteJbmU=", + "output": "tr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tr" + ], + "name": "ape-tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tr//:tr", + "name": "tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9PrlksnmQKYdCrRGnBbXBvqLbPj8ZQmi8XTlHyzZSMw=", + "output": "tree", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tree" + ], + "name": "ape-tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tree//:tree", + "name": "tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0orWjDT8OYyB4P9bP1I885n9nxVuxncEN5Jz8a+EjY0=", + "output": "true", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/true" + ], + "name": "ape-true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-true//:true", + "name": "true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-lZ7H+u2o/i0frr+3SNLX9wl+dt+Z8bcTkq97MAqwTV4=", + "output": "truncate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/truncate" + ], + "name": "ape-truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-truncate//:truncate", + "name": "truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-VDUxR7n3G2EfoF4WDYWypppVfzXI+kupo6yreBTWq+c=", + "output": "tsort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tsort" + ], + "name": "ape-tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tsort//:tsort", + "name": "tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3vpXXw5VFHre/OzD+2SOgcS9fvIF4880J1HRtAlFW8c=", + "output": "tty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tty" + ], + "name": "ape-tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tty//:tty", + "name": "tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-yQ5SZpbLi6dGTjNoF8K9FH3Jfn6DXGiCzEpXcgP1pSM=", + "output": "ttyinfo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ttyinfo" + ], + "name": "ape-ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ttyinfo//:ttyinfo", + "name": "ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-g/jLlpJ5JddFUPl9wf9mfxWMNByF3GBPwWlY48Hj+7M=", + "output": "uname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uname" + ], + "name": "ape-uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uname//:uname", + "name": "uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ikUALyvGuCHeyvfBrEz89EWJmOJ59X7hq9CWjniSBo8=", + "output": "unbourne", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unbourne" + ], + "name": "ape-unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unbourne//:unbourne", + "name": "unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8Uqi4z/f8vxXRK1QfUohl8MS6bIblMaM7S4VNInJhCA=", + "output": "unexpand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unexpand" + ], + "name": "ape-unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unexpand//:unexpand", + "name": "unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-iTTpfc9j+4f7t0pNGpYBDQJJqlA5BkbCsMypqw+4sRg=", + "output": "uniq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uniq" + ], + "name": "ape-uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uniq//:uniq", + "name": "uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-AYKajItQtnhxAVM7rUEWIdXvlfaWdxW2nu9TwEE620I=", + "output": "unlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unlink" + ], + "name": "ape-unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unlink//:unlink", + "name": "unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2b+SjxqjLjWICHM3ywRWizKE/GeLB5YS57dPcvAcCRM=", + "output": "unzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unzip" + ], + "name": "ape-unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unzip//:unzip", + "name": "unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Q8evVkg9AHD4/FMbxC73dGtk68EX2hfqr1L1wpW23Nk=", + "output": "uptime", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uptime" + ], + "name": "ape-uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uptime//:uptime", + "name": "uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-OzImZcJCLPzMoIBtE2P/uBXoS884jIDN3Qd2BefIpEw=", + "output": "users", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/users" + ], + "name": "ape-users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-users//:users", + "name": "users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-YttpdAkioTnB4ZjUreWdTj64q/JJbiej6FtlXJdyTHo=", + "output": "vdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vdir" + ], + "name": "ape-vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-vdir//:vdir", + "name": "vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-CQl0ivmr2M1hlgsUvgNyJdhgkvGIRtWmMlQQPcqnA1Q=", + "output": "verynice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/verynice" + ], + "name": "ape-verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-verynice//:verynice", + "name": "verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-/OlvTtKd5YlPwR3487Irjd2co6OKVSKartQt5jYDr14=", + "output": "vim", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vim" + ], + "name": "ape-vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-vim//:vim", + "name": "vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pLoNAlndoLNqVyoU4ocKOAWFe6SbVaJJ5gOgo1WFoPY=", + "output": "wall", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wall" + ], + "name": "ape-wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wall//:wall", + "name": "wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ImV3TUOpfKBK6dCLx9Yhkagrid09Nf/IKqA8M5tDGLs=", + "output": "wc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wc" + ], + "name": "ape-wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wc//:wc", + "name": "wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-EZzyls0b1JQuebKgxkLUeZU//Ej2tycTGg3tMdz5xC4=", + "output": "wget", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wget" + ], + "name": "ape-wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wget//:wget", + "name": "wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-MDWT8l0+L3alJRru65AVSGnWfnxzWEfg0QwEzqcQkLQ=", + "output": "who", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/who" + ], + "name": "ape-who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-who//:who", + "name": "who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KKSva/mAjJ3WEYH+eh3dXGC0PRtRlGGyOqh0+PV1smI=", + "output": "whoami", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/whoami" + ], + "name": "ape-whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-whoami//:whoami", + "name": "whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-/X84kHdTUhXoLwRoI/iABxuxkCB2EtL6m3G8FCFWjc0=", + "output": "xargs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xargs" + ], + "name": "ape-xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-xargs//:xargs", + "name": "xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oESVTQvf+W+G6zGqVmWeSsgb44OSQ7ysXCNSs7CGP8c=", + "output": "xz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xz" + ], + "name": "ape-xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-xz//:xz", + "name": "xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rk6FrLhfWozo179cbfow2cNJ8BcdQC0+w9BGgV63L+M=", + "output": "yes", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/yes" + ], + "name": "ape-yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-yes//:yes", + "name": "yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-hg8DAtRHtxwaEXf5MNuwxONdu3ZWubig70bQUfGPhYQ=", + "output": "zip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zip" + ], + "name": "ape-zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zip//:zip", + "name": "zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-uNvl/ZI6RA8s1Flnlq+J3YzrZh+UYegCpuJ+ZBFMZyA=", + "output": "zsh", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zsh" + ], + "name": "ape-zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zsh//:zsh", + "name": "zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gaJEudIltpcHEj9z1WjxxdDXpNHeGj0q1EiYNoCymzg=", + "output": "zstd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zstd" + ], + "name": "ape-zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zstd//:zstd", + "name": "zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_toolchain//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_cosmos@1.0.0-alpha.1", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 48, + "column": 23 + }, + "imports": {}, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-awk", + "target": "@awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-b2sum", + "target": "@b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-base32", + "target": "@base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-base64", + "target": "@base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-basename", + "target": "@basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-basenc", + "target": "@basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-bash", + "target": "@bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-berry", + "target": "@berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-brotli", + "target": "@brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-bzip2", + "target": "@bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cat", + "target": "@cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chcon", + "target": "@chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chgrp", + "target": "@chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chmod", + "target": "@chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chown", + "target": "@chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chroot", + "target": "@chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cksum", + "target": "@cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-clang-format", + "target": "@clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-comm", + "target": "@comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cp", + "target": "@cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-csplit", + "target": "@csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ctags", + "target": "@ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-curl", + "target": "@curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cut", + "target": "@cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dash", + "target": "@dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-datasette", + "target": "@datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-date", + "target": "@date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dd", + "target": "@dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-df", + "target": "@df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dir", + "target": "@dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dircolors", + "target": "@dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dirname", + "target": "@dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-du", + "target": "@du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-echo", + "target": "@echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-emacs", + "target": "@emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-emacsclient", + "target": "@emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-env", + "target": "@env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-expand", + "target": "@expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-expr", + "target": "@expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-factor", + "target": "@factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-false", + "target": "@false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-find", + "target": "@find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-fmt", + "target": "@fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-fold", + "target": "@fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-gmake", + "target": "@gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-greenbean", + "target": "@greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-grep", + "target": "@grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-groups", + "target": "@groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-gzip", + "target": "@gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-head", + "target": "@head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-hello", + "target": "@hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-id", + "target": "@id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-install", + "target": "@install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-join", + "target": "@join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-kill", + "target": "@kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-less", + "target": "@less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-life", + "target": "@life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-link", + "target": "@link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-llama", + "target": "@llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ln", + "target": "@ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-locate", + "target": "@locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-logname", + "target": "@logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ls", + "target": "@ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-lua", + "target": "@lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-make", + "target": "@make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-md5sum", + "target": "@md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mkdir", + "target": "@mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mkfifo", + "target": "@mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mknod", + "target": "@mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mktemp", + "target": "@mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mktemper", + "target": "@mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mv", + "target": "@mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nano", + "target": "@nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nesemu1", + "target": "@nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nice", + "target": "@nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ninja", + "target": "@ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nl", + "target": "@nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nohup", + "target": "@nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nproc", + "target": "@nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-numfmt", + "target": "@numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-od", + "target": "@od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-paste", + "target": "@paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pathchk", + "target": "@pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pigz", + "target": "@pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pinky", + "target": "@pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pledge", + "target": "@pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pr", + "target": "@pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printenv", + "target": "@printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printf", + "target": "@printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printimage", + "target": "@printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ptx", + "target": "@ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pwd", + "target": "@pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-python", + "target": "@python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-qjs", + "target": "@qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-readlink", + "target": "@readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-realpath", + "target": "@realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-redbean", + "target": "@redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rm", + "target": "@rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rmdir", + "target": "@rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rsync", + "target": "@rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-runcon", + "target": "@runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-script", + "target": "@script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sed", + "target": "@sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-seq", + "target": "@seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha1sum", + "target": "@sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha224sum", + "target": "@sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha256sum", + "target": "@sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha384sum", + "target": "@sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha512sum", + "target": "@sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-shred", + "target": "@shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-shuf", + "target": "@shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sleep", + "target": "@sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sort", + "target": "@sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-split", + "target": "@split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sqlite3", + "target": "@sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-stat", + "target": "@stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-stty", + "target": "@stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sum", + "target": "@sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sync", + "target": "@sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tac", + "target": "@tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tail", + "target": "@tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tar", + "target": "@tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tee", + "target": "@tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-test", + "target": "@test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tidy", + "target": "@tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-timeout", + "target": "@timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tmux", + "target": "@tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-touch", + "target": "@touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tr", + "target": "@tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tree", + "target": "@tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-true", + "target": "@true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-truncate", + "target": "@truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tsort", + "target": "@tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tty", + "target": "@tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ttyinfo", + "target": "@ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uname", + "target": "@uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unbourne", + "target": "@unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unexpand", + "target": "@unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uniq", + "target": "@uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unlink", + "target": "@unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unzip", + "target": "@unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uptime", + "target": "@uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-users", + "target": "@users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-vdir", + "target": "@vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-verynice", + "target": "@verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-vim", + "target": "@vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wall", + "target": "@wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wc", + "target": "@wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wget", + "target": "@wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-who", + "target": "@who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-whoami", + "target": "@whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-xargs", + "target": "@xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-xz", + "target": "@xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-yes", + "target": "@yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zip", + "target": "@zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zsh", + "target": "@zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zstd", + "target": "@zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], "deps": { + "rules_toolchain": "rules_toolchain@1.0.0-alpha.13", + "rules_download": "rules_download@1.0.0-alpha.5", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_cosmos~1.0.0-alpha.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/src.tar.gz" + ], + "integrity": "sha512-+1//goaMt1X+G73iX1oaGNK6DrR2JUlV5gvLBEwN5Mlzplt9ZymLSlvMPTP/KDhg2KY5Insc15GyBCY88chwsg==", + "strip_prefix": "rules_cosmos-v1.0.0-alpha.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } } }, "bazel_tools@_": { @@ -176,6 +7694,92 @@ "bazel_tools": "bazel_tools@_" } }, + "bazel_skylib@1.4.2": { + "name": "bazel_skylib", + "version": "1.4.2", + "key": "bazel_skylib@1.4.2", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "bazel_skylib~1.4.2", + "urls": [ + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz" + ], + "integrity": "sha256-Zv/ZMVZlv6r8lrUiePV8fi3Qn17eJ56m05sr5HHn46o=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "platforms@0.0.7": { + "name": "platforms", + "version": "0.0.7", + "key": "platforms@0.0.7", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "platforms", + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" + ], + "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_download@1.0.0-alpha.5": { + "name": "rules_download", + "version": "1.0.0-alpha.5", + "key": "rules_download@1.0.0-alpha.5", + "repoName": "rules_download", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_download~1.0.0-alpha.5", + "urls": [ + "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads/src.tar.gz" + ], + "integrity": "sha512-27Dv7/7Lm8QFYmBBvVawaHkWFdEUS36aYsaZmKKCLusJBrW7/N6nkDbLG8TnZcFXTy0Kd6hKRG6ZgA6oADfutA==", + "strip_prefix": "rules_download-v1.0.0-alpha.5", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "rules_cc@0.0.9": { "name": "rules_cc", "version": "0.0.9", @@ -306,7 +7910,7 @@ "deps": { "platforms": "platforms@0.0.7", "rules_cc": "rules_cc@0.0.9", - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.4.2", "rules_proto": "rules_proto@4.0.0", "rules_license": "rules_license@0.0.7", "bazel_tools": "bazel_tools@_", @@ -363,7 +7967,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.4.2", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -440,34 +8044,6 @@ } } }, - "platforms@0.0.7": { - "name": "platforms", - "version": "0.0.7", - "key": "platforms@0.0.7", - "repoName": "platforms", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "platforms", - "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" - ], - "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, "protobuf@3.19.6": { "name": "protobuf", "version": "3.19.6", @@ -477,7 +8053,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.4.2", "zlib": "zlib@1.3", "rules_python": "rules_python@0.4.0", "rules_cc": "rules_cc@0.0.9", @@ -568,7 +8144,7 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.4.2", "platforms": "platforms@0.0.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -587,38 +8163,5288 @@ "remote_patch_strip": 0 } } + } + }, + "moduleExtensions": { + "//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "RJvmtBrBT2icKDT13BvlBXW3Mz9phv160hnsBqQGQEo=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "resolved-curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/resolved:repository.bzl", + "ruleClassName": "resolved", + "attributes": { + "toolchain_type": "@@//curl/toolchain/cli:type", + "name": "_main~_repo_rules~resolved-curl" + } + } + } + } }, - "bazel_skylib@1.3.0": { - "name": "bazel_skylib", - "version": "1.3.0", - "key": "bazel_skylib@1.3.0", - "repoName": "bazel_skylib", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//toolchains/unittest:cmd_toolchain", - "//toolchains/unittest:bash_toolchain" - ], - "extensionUsages": [], - "deps": { - "platforms": "platforms@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "bazel_skylib~1.3.0", - "urls": [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz" - ], - "integrity": "sha256-dNVE2W9KW7Yw1GXKi7z+Ix41lOWq5X4e2/F6brPKJQY=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 + "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc" + } + }, + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains" + } + } } } - } - }, - "moduleExtensions": {} + }, + "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_cc": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc" + } + }, + "local_config_cc_toolchains": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf_toolchains", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc_toolchains" + } + } + } + } + }, + "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { + "general": { + "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_sh": { + "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", + "ruleClassName": "sh_config", + "attributes": { + "name": "bazel_tools~sh_configure_extension~local_config_sh" + } + } + } + } + }, + "@@rules_cosmos~1.0.0-alpha.1//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "yVJBByuEikRc+fG9VO4MORV0R/NWlbjblzW2ZpWiE6Q=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "ape-arm64.elf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WYUckbagilfXA6pgyoWnuG22V0kI58PhpOS+0CDa+UE=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-arm64.elf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-arm64.elf" + } + }, + "ape-x86_64.elf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-q/Oxu3GCk1v0jZjcFDxR7lY9KaH9LDkw/1qNjI2COBc=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.elf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-x86_64.elf" + } + }, + "ape-x86_64.macho": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oWyPo217RZYmTNW3k1MEYOLbBa8LG8fF4zSIfim5OJU=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.macho" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-x86_64.macho" + } + }, + "ape.pe": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/ape/pe:repository.bzl", + "ruleClassName": "pe", + "attributes": { + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape.pe" + } + }, + "ape": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/local/select:repository.bzl", + "ruleClassName": "select", + "attributes": { + "map": { + "arm64-linux": "@ape-arm64.elf", + "amd64-linux": "@ape-x86_64.elf", + "amd64-darwin": "@ape-x86_64.macho", + "windows": "@ape.pe" + }, + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape" + } + }, + "ape-awk": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-L/6XCQ5vyGlel2rAz5z1Nn+cjWA4rXRaMDBB/A1B1Ao=", + "output": "awk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/awk" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-awk" + } + }, + "awk": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-awk//:awk", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~awk" + } + }, + "ape-b2sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-GaoSlpwiXeZg5KgFv6Y6FYutDVmtaO6as4RrIt6AjNY=", + "output": "b2sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/b2sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-b2sum" + } + }, + "b2sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-b2sum//:b2sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~b2sum" + } + }, + "ape-base32": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KVJ2LDlzO6LUN1Cip3d26ZLqJeNkICPEr1CEtYdEkLY=", + "output": "base32", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base32" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base32" + } + }, + "base32": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base32//:base32", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~base32" + } + }, + "ape-base64": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-L6BS6aci/th7ucw7/y5A2MIqfLBT95RhyEfI5siuy/s=", + "output": "base64", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base64" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base64" + } + }, + "base64": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base64//:base64", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~base64" + } + }, + "ape-basename": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+TZAyOcWht66lllJlbQwKqIt1jk4CVf1/goI6HnIVlE=", + "output": "basename", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basename" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basename" + } + }, + "basename": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basename//:basename", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~basename" + } + }, + "ape-basenc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-NgGicKW9uV+5xc/oSEExuH/PleJOnwCDebhk7stAZV8=", + "output": "basenc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basenc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basenc" + } + }, + "basenc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basenc//:basenc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~basenc" + } + }, + "ape-bash": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uH/5vCQx2dWsxfMY31QUJPB5Vz2x+pK9nQ3XolULIm8=", + "output": "bash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bash" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bash" + } + }, + "bash": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bash//:bash", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~bash" + } + }, + "ape-berry": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3tGWs2Yc0rGqmlx1W50Fe3Tswvl2EsmxEABOR02yOZA=", + "output": "berry", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/berry" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-berry" + } + }, + "berry": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-berry//:berry", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~berry" + } + }, + "ape-brotli": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0x3bS2BFsgpLw/cnInch54BZzMw0aHHMcgvquLKmYK0=", + "output": "brotli", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/brotli" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-brotli" + } + }, + "brotli": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-brotli//:brotli", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~brotli" + } + }, + "ape-bzip2": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Teep6rhoNrBVRMgaOLRsAyq1s4iKk6KKITgU4l51qZA=", + "output": "bzip2", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bzip2" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bzip2" + } + }, + "bzip2": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bzip2//:bzip2", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~bzip2" + } + }, + "ape-cat": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-QlCeHxjEgWfBY7LQiADHJi+uudTo+oTHpaL8Dlorj2c=", + "output": "cat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cat" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cat" + } + }, + "cat": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cat//:cat", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cat" + } + }, + "ape-chcon": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9U+eUXrFnsdjYcD0035Kg3XC1J0gU28hK6dxPlsw2G0=", + "output": "chcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chcon" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chcon" + } + }, + "chcon": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chcon//:chcon", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chcon" + } + }, + "ape-chgrp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7R+QACW3Sz/D2ZBKyhqEykwHou6Insee01eHqXdiqHo=", + "output": "chgrp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chgrp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chgrp" + } + }, + "chgrp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chgrp//:chgrp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chgrp" + } + }, + "ape-chmod": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Ml5b42b7YHBO0xzeIfiN5ohBOSdPDveS8RZfoPHlFaI=", + "output": "chmod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chmod" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chmod" + } + }, + "chmod": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chmod//:chmod", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chmod" + } + }, + "ape-chown": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-SmjdbLY0UkHq+EbIWbMmpCexmhQB/29KWONWzRTyIys=", + "output": "chown", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chown" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chown" + } + }, + "chown": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chown//:chown", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chown" + } + }, + "ape-chroot": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-o2xdphc+QwJ8vR7uRVl8xPXQHY5eHCIGeNwp8Nxc8SA=", + "output": "chroot", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chroot" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chroot" + } + }, + "chroot": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chroot//:chroot", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chroot" + } + }, + "ape-cksum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WitBRvVH+cPbvXGlOwVyqMV2lgeF0BPOpG5ImGmLzEU=", + "output": "cksum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cksum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cksum" + } + }, + "cksum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cksum//:cksum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cksum" + } + }, + "ape-clang-format": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", + "output": "clang-format", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/clang-format" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-clang-format" + } + }, + "clang-format": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-clang-format//:clang-format", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~clang-format" + } + }, + "ape-comm": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ivuJjEm5AYm6076eXwc7FDqz2UZX9LSt0EQ3YoQFnzE=", + "output": "comm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/comm" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-comm" + } + }, + "comm": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-comm//:comm", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~comm" + } + }, + "ape-cp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zGVr2Bk0dhRWVt7KeuFkfbRX//yCwQl0MV8xi34ruiE=", + "output": "cp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cp" + } + }, + "cp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cp//:cp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cp" + } + }, + "ape-csplit": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rs3yGq0E94Yh0tcSxHj2xvafSYjJDXezNS2eGO+f5Do=", + "output": "csplit", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/csplit" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-csplit" + } + }, + "csplit": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-csplit//:csplit", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~csplit" + } + }, + "ape-ctags": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-NNiDbnKgZs9THRXW35GQF3BrYRixcVpImYUa9iZoPdY=", + "output": "ctags", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ctags" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ctags" + } + }, + "ctags": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ctags//:ctags", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ctags" + } + }, + "ape-curl": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pOPeSvp3FWm0T6YJha6w4NwWzKKsOvBkiRbO7RD+YM4=", + "output": "curl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/curl" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-curl" + } + }, + "curl": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-curl//:curl", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~curl" + } + }, + "ape-cut": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0Xu9tbCWY2ErB1Vu5klLuCGAlmub3xRk/RawWWoFr48=", + "output": "cut", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cut" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cut" + } + }, + "cut": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cut//:cut", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cut" + } + }, + "ape-dash": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-e28n45l75Tr8cHF+DX3qNe6nmZhyJDgLzMF2tJSZbQ8=", + "output": "dash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dash" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dash" + } + }, + "dash": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dash//:dash", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dash" + } + }, + "ape-datasette": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+2/MHG8dryuDNU9pFCHiJbpMoJZoG/0/iAf7ZivBpGU=", + "output": "datasette", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/datasette" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-datasette" + } + }, + "datasette": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-datasette//:datasette", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~datasette" + } + }, + "ape-date": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9YUybnuf7F6NLvs7+15+4KKzevTRX0brPA3jv3ZZgro=", + "output": "date", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/date" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-date" + } + }, + "date": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-date//:date", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~date" + } + }, + "ape-dd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9xs6mcP3zWEXNknfaYEw7mCZsEveFTIX8skJRnBQ+R8=", + "output": "dd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dd" + } + }, + "dd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dd//:dd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dd" + } + }, + "ape-df": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0C+RoZ6SaQ9bPVVwfmyZdP5L1SykDZFMvFXHjvQ8jl8=", + "output": "df", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/df" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-df" + } + }, + "df": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-df//:df", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~df" + } + }, + "ape-dir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-p7/SAjoYD2yZmZSkceNdo824CB5b2YJQ5m2c86Qwoxo=", + "output": "dir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dir" + } + }, + "dir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dir//:dir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dir" + } + }, + "ape-dircolors": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-BfWp8zUwsqKXRhdxeluvuhdBYV9EZuMgw0WZDvpUnMI=", + "output": "dircolors", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dircolors" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dircolors" + } + }, + "dircolors": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dircolors//:dircolors", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dircolors" + } + }, + "ape-dirname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-do7L0xWqE6r0UxcVKXNOh/N7SEh2cBrfQLp2y3dpp/c=", + "output": "dirname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dirname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dirname" + } + }, + "dirname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dirname//:dirname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dirname" + } + }, + "ape-du": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+43j5Ov8EZ4CcXBOJFP+b3DaLWqavwTGZeJ/L5GQUNk=", + "output": "du", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/du" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-du" + } + }, + "du": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-du//:du", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~du" + } + }, + "ape-echo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oaBC3x4Ts+CEI2UqM/YI8k1q5Ud/J2UQfWH4IILALmw=", + "output": "echo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/echo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-echo" + } + }, + "echo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-echo//:echo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~echo" + } + }, + "ape-emacs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7FDLQVDS6sBwWICaONqCfRcIw0w7tWecYmq9/UE4zog=", + "output": "emacs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacs" + } + }, + "emacs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacs//:emacs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~emacs" + } + }, + "ape-emacsclient": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-4j4g4s81gPzye27bASo4wmPOu2p80I8uIzMFC1QVSME=", + "output": "emacsclient", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacsclient" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacsclient" + } + }, + "emacsclient": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacsclient//:emacsclient", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~emacsclient" + } + }, + "ape-env": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-bfKNgkpnGRStT5QfHgZcC0RJFd4VLJbgLthU010iSGo=", + "output": "env", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/env" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-env" + } + }, + "env": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-env//:env", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~env" + } + }, + "ape-expand": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-eRZ9h8oUqb0KV+ZU0heHtItPEkHMYltd+tEAitzB1Hw=", + "output": "expand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expand" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expand" + } + }, + "expand": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expand//:expand", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~expand" + } + }, + "ape-expr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3W0o/RomE/No9tbYhLfwa1X3WuPUde/EJGZLKM9uRhA=", + "output": "expr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expr" + } + }, + "expr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expr//:expr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~expr" + } + }, + "ape-factor": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-78brRdtq90rnwCvLDALn8Qbm5adFdD5i18I6EACGfms=", + "output": "factor", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/factor" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-factor" + } + }, + "factor": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-factor//:factor", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~factor" + } + }, + "ape-false": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-djpJwmPkS77w3B/DbNkrFKnw8FDiMTZs/kNSfvqE2Xk=", + "output": "false", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/false" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-false" + } + }, + "false": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-false//:false", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~false" + } + }, + "ape-find": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-QgZxkbiCL6dWewPSV1CYhg2D6+Trfy4ezGIZ/xsTs8c=", + "output": "find", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/find" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-find" + } + }, + "find": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-find//:find", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~find" + } + }, + "ape-fmt": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3EVsR8K0vlkhxK+eMBg57euCI28PcXS5I1sITgqpm58=", + "output": "fmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fmt" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fmt" + } + }, + "fmt": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fmt//:fmt", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~fmt" + } + }, + "ape-fold": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-R7i2ybtDZwR0r9pt46w53Jsx6D2aeG362M3wOpTrvwE=", + "output": "fold", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fold" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fold" + } + }, + "fold": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fold//:fold", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~fold" + } + }, + "ape-gmake": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-kVx885AMt0pUw30vMkQHq6nfcpzGyLJaxnNmFgoqI9U=", + "output": "gmake", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gmake" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gmake" + } + }, + "gmake": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gmake//:gmake", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~gmake" + } + }, + "ape-greenbean": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LpIS0vOtJ6tzc24IFVnKCs7t0ihVxUFVTm3+tJAa9rs=", + "output": "greenbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/greenbean" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-greenbean" + } + }, + "greenbean": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-greenbean//:greenbean", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~greenbean" + } + }, + "ape-grep": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IC0TekjEN6KK3qT0VYK7hMTc5kjrXTFvBXKE3AiO2kY=", + "output": "grep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/grep" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-grep" + } + }, + "grep": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-grep//:grep", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~grep" + } + }, + "ape-groups": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UR05dumcot/bQe03vUnwmdAPVA+tuWIT6xyU+NQP7P4=", + "output": "groups", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/groups" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-groups" + } + }, + "groups": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-groups//:groups", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~groups" + } + }, + "ape-gzip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-PxwuXMmyoi44qXAQ+/zi10RRjLz1S3FDvtGCZxNxOGI=", + "output": "gzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gzip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gzip" + } + }, + "gzip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gzip//:gzip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~gzip" + } + }, + "ape-head": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jB9uy/H8iOFVHaAF+ew1M4VuqyfrlZjDI3bI5/fBji0=", + "output": "head", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/head" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-head" + } + }, + "head": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-head//:head", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~head" + } + }, + "ape-hello": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wmz/Gry0Ut1TOEod3y81+iyNcmKw9r5ugEOScfLpUqQ=", + "output": "hello", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/hello" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-hello" + } + }, + "hello": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-hello//:hello", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~hello" + } + }, + "ape-id": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-m7Dk9LU9pFAyGT1mErMwItce1FrErS0bRGsQ7bayGag=", + "output": "id", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/id" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-id" + } + }, + "id": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-id//:id", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~id" + } + }, + "ape-install": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KWRc7xVYg+Wekm7EwrGvEuz6yFOdgB1yvLTV63GNCV4=", + "output": "install", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/install" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-install" + } + }, + "install": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-install//:install", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~install" + } + }, + "ape-join": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EdLcVV+qVnxLMumDbLQs0MSQ7wrOiI06c78haOT+Ck8=", + "output": "join", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/join" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-join" + } + }, + "join": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-join//:join", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~join" + } + }, + "ape-kill": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-b4UufNPgWz55yHR+k5OdwTBZyVBjY6WtVZ4HEMLr30I=", + "output": "kill", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/kill" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-kill" + } + }, + "kill": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-kill//:kill", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~kill" + } + }, + "ape-less": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-enwicIhlycMwQttEmHsWpx00m20nqIS/DLt4IHO0I8g=", + "output": "less", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/less" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-less" + } + }, + "less": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-less//:less", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~less" + } + }, + "ape-life": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rhmCu+Ub8OrG4CH9Hnwgw2oQVWf8RTpX2oNTKSEKeZM=", + "output": "life", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/life" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-life" + } + }, + "life": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-life//:life", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~life" + } + }, + "ape-link": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-h2MKF11tX3LnkVF2aZYHTKGqjrmqDfTQNF+vW/LGMyM=", + "output": "link", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/link" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-link" + } + }, + "link": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-link//:link", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~link" + } + }, + "ape-llama": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8EVOk68eZ4AZJ2h8AmmlgfV2gHj52zzdLx9ibJaYmfE=", + "output": "llama", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/llama" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-llama" + } + }, + "llama": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-llama//:llama", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~llama" + } + }, + "ape-ln": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FriLh1k6Cl11yTHswZVVsJPlF+Sc9JT6uRjhKzjEW64=", + "output": "ln", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ln" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ln" + } + }, + "ln": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ln//:ln", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ln" + } + }, + "ape-locate": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7nM47L1FPFcKgrayInKIjFBPUmJP9Vi5YC4jS+syHRQ=", + "output": "locate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/locate" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-locate" + } + }, + "locate": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-locate//:locate", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~locate" + } + }, + "ape-logname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-72+wGF+sClLqYuj1Drnjxv/ABYnYB7DC35n2tvg5bX4=", + "output": "logname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/logname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-logname" + } + }, + "logname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-logname//:logname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~logname" + } + }, + "ape-ls": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rey5QIeu21UB4L3U6ZIngaeZl1WOcViPZmpJ3URvDZM=", + "output": "ls", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ls" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ls" + } + }, + "ls": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ls//:ls", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ls" + } + }, + "ape-lua": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lPF7Jd3+IliCpCzgrry/d+o6LtPDwEdGKJvk+SoKDtQ=", + "output": "lua", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/lua" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-lua" + } + }, + "lua": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-lua//:lua", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~lua" + } + }, + "ape-make": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jmbPzMhemQqBcAE4sPyOoI0pzjSo13nykAhsq3Jn+pc=", + "output": "make", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/make" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-make" + } + }, + "make": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-make//:make", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~make" + } + }, + "ape-md5sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-kA7ySZfp8NGFzeFMVq5e5BBm/ELxgTNTBkH9kXY5lhQ=", + "output": "md5sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/md5sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-md5sum" + } + }, + "md5sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-md5sum//:md5sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~md5sum" + } + }, + "ape-mkdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LxEoIRmJVcdgA5nnYMEyuWhtJALz7rfKdQza3UY9EXs=", + "output": "mkdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkdir" + } + }, + "mkdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkdir//:mkdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mkdir" + } + }, + "ape-mkfifo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DsS9Q0qSnAtpQplF96sPs3cJfF62P6ic7K9THDD3J9U=", + "output": "mkfifo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkfifo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkfifo" + } + }, + "mkfifo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkfifo//:mkfifo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mkfifo" + } + }, + "ape-mknod": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2yKTh4pUH4nzZnsJzmm9YDALPEfJ1p46iVjqTsibNac=", + "output": "mknod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mknod" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mknod" + } + }, + "mknod": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mknod//:mknod", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mknod" + } + }, + "ape-mktemp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-r568xzQ0RYW07Lx/dMEN2oued14nY8/bCwWU0l8RNdM=", + "output": "mktemp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemp" + } + }, + "mktemp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemp//:mktemp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemp" + } + }, + "ape-mktemper": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mXjgWQ8ta7rsqg9NI3AnfCaEbJ0OxpSZCHoDLTn9T9w=", + "output": "mktemper", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemper" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemper" + } + }, + "mktemper": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemper//:mktemper", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemper" + } + }, + "ape-mv": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rX1wfzu57rdGXsELlWaUyL7YTeUyoywFGIXrrKoUQGE=", + "output": "mv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mv" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mv" + } + }, + "mv": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mv//:mv", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mv" + } + }, + "ape-nano": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-tEZ6Ifz9IFuJryEURc6RaDjZxg7iVFvxSDvYRnhpVv0=", + "output": "nano", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nano" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nano" + } + }, + "nano": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nano//:nano", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nano" + } + }, + "ape-nesemu1": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jSgFpOEgglaFDd5IgVEwV9DD7OJEhoBBI6vddGcS1Lo=", + "output": "nesemu1", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nesemu1" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nesemu1" + } + }, + "nesemu1": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nesemu1//:nesemu1", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nesemu1" + } + }, + "ape-nice": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WY4vdvaY+uwqkeUupUdaWjEgSZrqWQAOkUBcrEzzppY=", + "output": "nice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nice" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nice" + } + }, + "nice": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nice//:nice", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nice" + } + }, + "ape-ninja": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ALAx5OFud0Ny0lHENIykc1LfRsBH39NqHmbkSnXpRxw=", + "output": "ninja", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ninja" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ninja" + } + }, + "ninja": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ninja//:ninja", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ninja" + } + }, + "ape-nl": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7NTNrkFQWXoNt6GCrQyRFPC/drWHtJUKOU9LkA1SeVE=", + "output": "nl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nl" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nl" + } + }, + "nl": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nl//:nl", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nl" + } + }, + "ape-nohup": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ov0ymvfz+iqToWIHgLZ9GvlUVLCWsvAT2n1kHetfZi0=", + "output": "nohup", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nohup" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nohup" + } + }, + "nohup": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nohup//:nohup", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nohup" + } + }, + "ape-nproc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7P5oDE/hBe3o18+xaWLuEix1uVnJH7V4/aDNyPXcz/A=", + "output": "nproc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nproc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nproc" + } + }, + "nproc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nproc//:nproc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nproc" + } + }, + "ape-numfmt": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-cVaJG53XE2JmCyHtCQhi7tzSor9kdmWZWhI/ZkYwr/I=", + "output": "numfmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/numfmt" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-numfmt" + } + }, + "numfmt": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-numfmt//:numfmt", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~numfmt" + } + }, + "ape-od": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gNNnixyQNkBE1oHBSE0O7R8uTCCZNZupBtqO7Wx+xds=", + "output": "od", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/od" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-od" + } + }, + "od": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-od//:od", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~od" + } + }, + "ape-paste": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fSqWz5Qt32pnmjpCcqKf8Eq2uQK3A+kBLbJKIhgLGbs=", + "output": "paste", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/paste" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-paste" + } + }, + "paste": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-paste//:paste", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~paste" + } + }, + "ape-pathchk": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+pJKNxAm1PzPrAQbQOSiEeMDgohv34nRNglLt58JRhM=", + "output": "pathchk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pathchk" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pathchk" + } + }, + "pathchk": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pathchk//:pathchk", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pathchk" + } + }, + "ape-pigz": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-neR0INVhYPonCUWyMbownwG8pXc/+WZEoG1tGSOCcnk=", + "output": "pigz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pigz" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pigz" + } + }, + "pigz": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pigz//:pigz", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pigz" + } + }, + "ape-pinky": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-qktEtm4kQY+NZdthnl7vM6QFI1ieOziMWJa25szI0BU=", + "output": "pinky", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pinky" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pinky" + } + }, + "pinky": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pinky//:pinky", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pinky" + } + }, + "ape-pledge": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DBuoptCsEnxtUfCdnJwpMhgiLOk+j6WqGRBWq7XHVlQ=", + "output": "pledge", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pledge" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pledge" + } + }, + "pledge": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pledge//:pledge", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pledge" + } + }, + "ape-pr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Txiw5w8jFGhOwNgIRFKrFnhfgRHgF6Kj7dpX8RVAfjE=", + "output": "pr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pr" + } + }, + "pr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pr//:pr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pr" + } + }, + "ape-printenv": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gIviB/AfzVcC3rT+Tm+JWVq05aAmVjl4NYmaTvD97R4=", + "output": "printenv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printenv" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printenv" + } + }, + "printenv": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printenv//:printenv", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printenv" + } + }, + "ape-printf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XJ+5nYvXQosvg0fmt0TqxyogQFl4TOmOVECybqQCAQI=", + "output": "printf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printf" + } + }, + "printf": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printf//:printf", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printf" + } + }, + "ape-printimage": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ETGvBd5ixJMIoW6oMM1prijnvrjL2geCTBwP699jKyw=", + "output": "printimage", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printimage" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printimage" + } + }, + "printimage": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printimage//:printimage", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printimage" + } + }, + "ape-ptx": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CXfqZ6zGWs/PzOLzNoDaPqS2XIK/KMWRsvFBBfx/CeQ=", + "output": "ptx", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ptx" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ptx" + } + }, + "ptx": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ptx//:ptx", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ptx" + } + }, + "ape-pwd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fc9y/oBB2uWbz2n2YMO5E+USOKnSVjJ2B7vezHe83Z0=", + "output": "pwd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pwd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pwd" + } + }, + "pwd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pwd//:pwd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pwd" + } + }, + "ape-python": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-autrcdsbwpu7HyiXjIqUjwKG5gtTwBxJxORs0xIrZiw=", + "output": "python", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/python" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-python" + } + }, + "python": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-python//:python", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~python" + } + }, + "ape-qjs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IzMWyCtBfHbGx/RH+PWgEVs1M1lCTIjEMZ4T8jGLLLs=", + "output": "qjs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/qjs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-qjs" + } + }, + "qjs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-qjs//:qjs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~qjs" + } + }, + "ape-readlink": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-sk17dpwRyzcrbmrMdo5BTaEAeuPL46dvJt1N9FTA9/4=", + "output": "readlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/readlink" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-readlink" + } + }, + "readlink": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-readlink//:readlink", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~readlink" + } + }, + "ape-realpath": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-57coUej2pyRKuIb0maayHqEHeyefv4iKI7DdJHdlfmk=", + "output": "realpath", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/realpath" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-realpath" + } + }, + "realpath": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-realpath//:realpath", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~realpath" + } + }, + "ape-redbean": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-AxMjGqvfEQeZMJeDd2coCtTw/P28uQ5vFnuk3DARdIw=", + "output": "redbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/redbean" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-redbean" + } + }, + "redbean": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-redbean//:redbean", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~redbean" + } + }, + "ape-rm": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Q752EgtwP86tjdOteCOn3AUm5bFDzQmP/09FqgLY8vs=", + "output": "rm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rm" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rm" + } + }, + "rm": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rm//:rm", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rm" + } + }, + "ape-rmdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-5hJEvqD9v8jZyllDfAXnQkV0IbE0TbE9TTzn3kKKKSw=", + "output": "rmdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rmdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rmdir" + } + }, + "rmdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rmdir//:rmdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rmdir" + } + }, + "ape-rsync": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yieoMPKMhaU/V/N1lFVm0n+ssgZyOeyA5A8OMKW8Ouc=", + "output": "rsync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rsync" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rsync" + } + }, + "rsync": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rsync//:rsync", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rsync" + } + }, + "ape-runcon": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-y3o+vzi9pJfuCIXkwKu9LFBmVUiw6vFHru+S/OrRcLc=", + "output": "runcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/runcon" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-runcon" + } + }, + "runcon": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-runcon//:runcon", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~runcon" + } + }, + "ape-script": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DIoiCjveTxmW/wKXIRbGE3V+ct/9beJpPSGL8CZn1vA=", + "output": "script", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/script" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-script" + } + }, + "script": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-script//:script", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~script" + } + }, + "ape-sed": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-iPJJjP+GqFo8EqsBZsHRt9VChDniS53ADifknrFJAiA=", + "output": "sed", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sed" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sed" + } + }, + "sed": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sed//:sed", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sed" + } + }, + "ape-seq": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mXtquMhfoIHY2ZWQuJHPjzyyIKwaNK4bQ8kBfJ/7pI4=", + "output": "seq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/seq" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-seq" + } + }, + "seq": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-seq//:seq", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~seq" + } + }, + "ape-sha1sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2jTRBDjQXmilIHJNXlwDUTQBRwp7SIC1trWdG8F90Y0=", + "output": "sha1sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha1sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha1sum" + } + }, + "sha1sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha1sum//:sha1sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha1sum" + } + }, + "ape-sha224sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8/xMb0Po8frP7QMxDoCU1XNQJVVVKe6oD2BUZRe5y6k=", + "output": "sha224sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha224sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha224sum" + } + }, + "sha224sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha224sum//:sha224sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha224sum" + } + }, + "ape-sha256sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HNquOwLp4buMX/w+duu6gd7y0ORk2Pj9zWrnRCiN6nw=", + "output": "sha256sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha256sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha256sum" + } + }, + "sha256sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha256sum//:sha256sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha256sum" + } + }, + "ape-sha384sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-C4FfhXjU+Az4MapjJDds85brDx2cHrMw7vTkWQBm3wI=", + "output": "sha384sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha384sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha384sum" + } + }, + "sha384sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha384sum//:sha384sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha384sum" + } + }, + "ape-sha512sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FrR/KCVAtAFbLJJZCyrNFgWlU1dYpVBZSbSok7/kUF4=", + "output": "sha512sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha512sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha512sum" + } + }, + "sha512sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha512sum//:sha512sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha512sum" + } + }, + "ape-shred": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-bW0aU82OyvAe/T+I+18/5iuahYAORME4L+p2GGMkk1Y=", + "output": "shred", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shred" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shred" + } + }, + "shred": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shred//:shred", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~shred" + } + }, + "ape-shuf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HneyotcGba+4xEvzuQZxbOnbUIhFXfVI8z/d1oeLX8k=", + "output": "shuf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shuf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shuf" + } + }, + "shuf": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shuf//:shuf", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~shuf" + } + }, + "ape-sleep": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MRRvz2YSJneo3hsLJB5u8bawx4xhOfokLI+tEQJmuhM=", + "output": "sleep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sleep" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sleep" + } + }, + "sleep": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sleep//:sleep", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sleep" + } + }, + "ape-sort": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3VKAHVlzBqpWHS5tJ0OtBnU7sGnZ1EUSU8tuGWuv988=", + "output": "sort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sort" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sort" + } + }, + "sort": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sort//:sort", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sort" + } + }, + "ape-split": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XmJ7RebkB6nkQQooH9oVYtLV7IS6JJUabBSBspyNFqU=", + "output": "split", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/split" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-split" + } + }, + "split": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-split//:split", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~split" + } + }, + "ape-sqlite3": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Xe33hi2k4XRz86fO95x2DkVIfL5T00pUVWXooJ29bH8=", + "output": "sqlite3", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sqlite3" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sqlite3" + } + }, + "sqlite3": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sqlite3//:sqlite3", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sqlite3" + } + }, + "ape-stat": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-PEG4bpiGGf4b8NMrA5R36orjqwfRv2QrA+olwygBgk4=", + "output": "stat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stat" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stat" + } + }, + "stat": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stat//:stat", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~stat" + } + }, + "ape-stty": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9Jpvfj5Zb6pHwGl1PsHcc346INa84bTW8YuLokfWmt0=", + "output": "stty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stty" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stty" + } + }, + "stty": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stty//:stty", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~stty" + } + }, + "ape-sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HcpxfiyXFRbrMjJbMKI2kzzm+kklXDvrjk7bN01Z7+g=", + "output": "sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sum" + } + }, + "sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sum//:sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sum" + } + }, + "ape-sync": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-dQUkTupPw1XWw+KiWVk3C3UVOCJsHzpgaaRL6+c5fi4=", + "output": "sync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sync" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sync" + } + }, + "sync": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sync//:sync", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sync" + } + }, + "ape-tac": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-RKVo9/vao5NrHBJw8q4djRyZAIhZXGXC6C1IOPh0RVE=", + "output": "tac", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tac" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tac" + } + }, + "tac": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tac//:tac", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tac" + } + }, + "ape-tail": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pkCcuNP1NP8PoXSPOjNQxcCd++Ha9fKEhcL40h2vhs8=", + "output": "tail", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tail" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tail" + } + }, + "tail": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tail//:tail", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tail" + } + }, + "ape-tar": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UqpsW/LDOtJE4AkPLvSgU54kQPF0L2JW8nB6cUx2eeU=", + "output": "tar", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tar" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tar" + } + }, + "tar": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tar//:tar", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tar" + } + }, + "ape-tee": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3icXvzVLCKaIiwyhbK8d5xsaKVS1FsrlFqa46n5UsgA=", + "output": "tee", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tee" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tee" + } + }, + "tee": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tee//:tee", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tee" + } + }, + "ape-test": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rAM1etW/Sh6QiwIEKYJ8wTeMdGrS7JXlZLxvN3WOpJY=", + "output": "test", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/test" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-test" + } + }, + "test": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-test//:test", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~test" + } + }, + "ape-tidy": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ino0vYiVbVN3iWPg2QkkAhkt0/6rpQV4gByQOy8Anko=", + "output": "tidy", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tidy" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tidy" + } + }, + "tidy": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tidy//:tidy", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tidy" + } + }, + "ape-timeout": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-I2cheet197QEuPUUm/vwFd3aa2kbpjS74lWkRPnB4nM=", + "output": "timeout", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/timeout" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-timeout" + } + }, + "timeout": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-timeout//:timeout", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~timeout" + } + }, + "ape-tmux": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YXa8jhJI9onfgaqZBSibiqhTVmrV0m8nVABlX4y2Rq0=", + "output": "tmux", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tmux" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tmux" + } + }, + "tmux": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tmux//:tmux", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tmux" + } + }, + "ape-touch": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IbTnhZPtsp0MVR5YMbPbydQoZW4fdkK+zpLUWzniLMs=", + "output": "touch", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/touch" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-touch" + } + }, + "touch": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-touch//:touch", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~touch" + } + }, + "ape-tr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2dRx5qpg0gK54dSSIvLX65hXsSDSf0aqSVEqOteJbmU=", + "output": "tr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tr" + } + }, + "tr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tr//:tr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tr" + } + }, + "ape-tree": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9PrlksnmQKYdCrRGnBbXBvqLbPj8ZQmi8XTlHyzZSMw=", + "output": "tree", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tree" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tree" + } + }, + "tree": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tree//:tree", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tree" + } + }, + "ape-true": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0orWjDT8OYyB4P9bP1I885n9nxVuxncEN5Jz8a+EjY0=", + "output": "true", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/true" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-true" + } + }, + "true": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-true//:true", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~true" + } + }, + "ape-truncate": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lZ7H+u2o/i0frr+3SNLX9wl+dt+Z8bcTkq97MAqwTV4=", + "output": "truncate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/truncate" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-truncate" + } + }, + "truncate": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-truncate//:truncate", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~truncate" + } + }, + "ape-tsort": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-VDUxR7n3G2EfoF4WDYWypppVfzXI+kupo6yreBTWq+c=", + "output": "tsort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tsort" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tsort" + } + }, + "tsort": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tsort//:tsort", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tsort" + } + }, + "ape-tty": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3vpXXw5VFHre/OzD+2SOgcS9fvIF4880J1HRtAlFW8c=", + "output": "tty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tty" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tty" + } + }, + "tty": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tty//:tty", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tty" + } + }, + "ape-ttyinfo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yQ5SZpbLi6dGTjNoF8K9FH3Jfn6DXGiCzEpXcgP1pSM=", + "output": "ttyinfo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ttyinfo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ttyinfo" + } + }, + "ttyinfo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ttyinfo//:ttyinfo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ttyinfo" + } + }, + "ape-uname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-g/jLlpJ5JddFUPl9wf9mfxWMNByF3GBPwWlY48Hj+7M=", + "output": "uname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uname" + } + }, + "uname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uname//:uname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uname" + } + }, + "ape-unbourne": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ikUALyvGuCHeyvfBrEz89EWJmOJ59X7hq9CWjniSBo8=", + "output": "unbourne", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unbourne" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unbourne" + } + }, + "unbourne": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unbourne//:unbourne", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unbourne" + } + }, + "ape-unexpand": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8Uqi4z/f8vxXRK1QfUohl8MS6bIblMaM7S4VNInJhCA=", + "output": "unexpand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unexpand" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unexpand" + } + }, + "unexpand": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unexpand//:unexpand", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unexpand" + } + }, + "ape-uniq": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-iTTpfc9j+4f7t0pNGpYBDQJJqlA5BkbCsMypqw+4sRg=", + "output": "uniq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uniq" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uniq" + } + }, + "uniq": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uniq//:uniq", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uniq" + } + }, + "ape-unlink": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-AYKajItQtnhxAVM7rUEWIdXvlfaWdxW2nu9TwEE620I=", + "output": "unlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unlink" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unlink" + } + }, + "unlink": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unlink//:unlink", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unlink" + } + }, + "ape-unzip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2b+SjxqjLjWICHM3ywRWizKE/GeLB5YS57dPcvAcCRM=", + "output": "unzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unzip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unzip" + } + }, + "unzip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unzip//:unzip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unzip" + } + }, + "ape-uptime": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Q8evVkg9AHD4/FMbxC73dGtk68EX2hfqr1L1wpW23Nk=", + "output": "uptime", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uptime" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uptime" + } + }, + "uptime": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uptime//:uptime", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uptime" + } + }, + "ape-users": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-OzImZcJCLPzMoIBtE2P/uBXoS884jIDN3Qd2BefIpEw=", + "output": "users", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/users" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-users" + } + }, + "users": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-users//:users", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~users" + } + }, + "ape-vdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YttpdAkioTnB4ZjUreWdTj64q/JJbiej6FtlXJdyTHo=", + "output": "vdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vdir" + } + }, + "vdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vdir//:vdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~vdir" + } + }, + "ape-verynice": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CQl0ivmr2M1hlgsUvgNyJdhgkvGIRtWmMlQQPcqnA1Q=", + "output": "verynice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/verynice" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-verynice" + } + }, + "verynice": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-verynice//:verynice", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~verynice" + } + }, + "ape-vim": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/OlvTtKd5YlPwR3487Irjd2co6OKVSKartQt5jYDr14=", + "output": "vim", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vim" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vim" + } + }, + "vim": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vim//:vim", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~vim" + } + }, + "ape-wall": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pLoNAlndoLNqVyoU4ocKOAWFe6SbVaJJ5gOgo1WFoPY=", + "output": "wall", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wall" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wall" + } + }, + "wall": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wall//:wall", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wall" + } + }, + "ape-wc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ImV3TUOpfKBK6dCLx9Yhkagrid09Nf/IKqA8M5tDGLs=", + "output": "wc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wc" + } + }, + "wc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wc//:wc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wc" + } + }, + "ape-wget": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EZzyls0b1JQuebKgxkLUeZU//Ej2tycTGg3tMdz5xC4=", + "output": "wget", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wget" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wget" + } + }, + "wget": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wget//:wget", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wget" + } + }, + "ape-who": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MDWT8l0+L3alJRru65AVSGnWfnxzWEfg0QwEzqcQkLQ=", + "output": "who", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/who" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-who" + } + }, + "who": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-who//:who", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~who" + } + }, + "ape-whoami": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KKSva/mAjJ3WEYH+eh3dXGC0PRtRlGGyOqh0+PV1smI=", + "output": "whoami", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/whoami" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-whoami" + } + }, + "whoami": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-whoami//:whoami", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~whoami" + } + }, + "ape-xargs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/X84kHdTUhXoLwRoI/iABxuxkCB2EtL6m3G8FCFWjc0=", + "output": "xargs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xargs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xargs" + } + }, + "xargs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xargs//:xargs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~xargs" + } + }, + "ape-xz": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oESVTQvf+W+G6zGqVmWeSsgb44OSQ7ysXCNSs7CGP8c=", + "output": "xz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xz" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xz" + } + }, + "xz": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xz//:xz", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~xz" + } + }, + "ape-yes": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rk6FrLhfWozo179cbfow2cNJ8BcdQC0+w9BGgV63L+M=", + "output": "yes", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/yes" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-yes" + } + }, + "yes": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-yes//:yes", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~yes" + } + }, + "ape-zip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hg8DAtRHtxwaEXf5MNuwxONdu3ZWubig70bQUfGPhYQ=", + "output": "zip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zip" + } + }, + "zip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zip//:zip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zip" + } + }, + "ape-zsh": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uNvl/ZI6RA8s1Flnlq+J3YzrZh+UYegCpuJ+ZBFMZyA=", + "output": "zsh", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zsh" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zsh" + } + }, + "zsh": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zsh//:zsh", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zsh" + } + }, + "ape-zstd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gaJEudIltpcHEj9z1WjxxdDXpNHeGj0q1EiYNoCymzg=", + "output": "zstd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zstd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zstd" + } + }, + "zstd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zstd//:zstd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zstd" + } + } + } + } + }, + "@@rules_java~7.1.0//java:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "remotejdk21_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" + ] + } + }, + "remote_java_tools_windows": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows", + "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip" + ] + } + }, + "remotejdk11_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" + ] + } + }, + "remotejdk11_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" + } + }, + "remotejdk11_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" + ] + } + }, + "remotejdk11_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", + "strip_prefix": "jdk-11.0.13+8", + "urls": [ + "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" + ] + } + }, + "remotejdk17_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" + ] + } + }, + "remotejdk11_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk21_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz" + ] + } + }, + "remote_java_tools_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux", + "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip" + ] + } + }, + "remotejdk21_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip" + ] + } + }, + "remotejdk21_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk11_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk17_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk17_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" + ] + } + }, + "remote_java_tools_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64", + "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip" + ] + } + }, + "remotejdk17_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk21_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" + } + }, + "local_jdk": { + "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl", + "ruleClassName": "_local_java_repository_rule", + "attributes": { + "name": "rules_java~7.1.0~toolchains~local_jdk", + "java_home": "", + "version": "", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" + } + }, + "remote_java_tools_darwin_x86_64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64", + "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip" + ] + } + }, + "remote_java_tools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools", + "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip" + ] + } + }, + "remotejdk17_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk17_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk11_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk21_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" + } + } + } + } + }, + "@@rules_toolchain~1.0.0-alpha.13//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "qXc+t+XkxFhCAlOIhCr8I+ndLztHFOWGoNs6UXtP95k=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/local/triplet:repository.bzl", + "ruleClassName": "triplet", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~_repo_rules~local" + } + }, + "launcher": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/launcher:repository.bzl", + "ruleClassName": "launcher", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~_repo_rules~launcher" + } + } + } + } + }, + "@@rules_toolchain~1.0.0-alpha.13//toolchain/export:defs.bzl%toolchain_export": { + "general": { + "bzlTransitiveDigest": "BzNop8Xd2QfFtwy+F4thyq9O+CpaFjHeMWKDF15GMaM=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "cosmos-head": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-head", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~head//:head" + } + }, + "cosmos-clang-format": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-clang-format", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~clang-format//:clang-format" + } + }, + "curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~curl", + "target": "@@rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-curl//:cosmos-curl" + } + }, + "cosmos-unexpand": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unexpand", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unexpand//:unexpand" + } + }, + "cosmos-sha384sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha384sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha384sum//:sha384sum" + } + }, + "cosmos-cut": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cut", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cut//:cut" + } + }, + "cosmos-datasette": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-datasette", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~datasette//:datasette" + } + }, + "cosmos-mknod": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mknod", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mknod//:mknod" + } + }, + "cosmos-pwd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pwd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pwd//:pwd" + } + }, + "cosmos-numfmt": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-numfmt", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~numfmt//:numfmt" + } + }, + "cosmos-chroot": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chroot", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chroot//:chroot" + } + }, + "cosmos-make": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-make", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~make//:make" + } + }, + "cosmos-link": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-link", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~link//:link" + } + }, + "cosmos-expr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-expr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~expr//:expr" + } + }, + "cosmos-life": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-life", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~life//:life" + } + }, + "cosmos-emacs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-emacs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~emacs//:emacs" + } + }, + "cosmos-paste": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-paste", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~paste//:paste" + } + }, + "cosmos-python": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-python", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~python//:python" + } + }, + "cosmos-timeout": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-timeout", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~timeout//:timeout" + } + }, + "cosmos-dircolors": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dircolors", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dircolors//:dircolors" + } + }, + "cosmos-wall": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wall", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wall//:wall" + } + }, + "cosmos-tidy": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tidy", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tidy//:tidy" + } + }, + "cosmos-cp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cp//:cp" + } + }, + "cosmos-nohup": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nohup", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nohup//:nohup" + } + }, + "cosmos-llama": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-llama", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~llama//:llama" + } + }, + "cosmos-seq": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-seq", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~seq//:seq" + } + }, + "cosmos-sleep": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sleep", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sleep//:sleep" + } + }, + "cosmos-script": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-script", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~script//:script" + } + }, + "cosmos-ninja": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ninja", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ninja//:ninja" + } + }, + "cosmos-base32": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-base32", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~base32//:base32" + } + }, + "cosmos-runcon": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-runcon", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~runcon//:runcon" + } + }, + "cosmos-bash": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-bash", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~bash//:bash" + } + }, + "cosmos-tmux": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tmux", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tmux//:tmux" + } + }, + "cosmos-sed": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sed", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sed//:sed" + } + }, + "cosmos-zsh": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zsh", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zsh//:zsh" + } + }, + "cosmos-grep": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-grep", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~grep//:grep" + } + }, + "cosmos-basename": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-basename", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~basename//:basename" + } + }, + "cosmos-sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sum//:sum" + } + }, + "cosmos-qjs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-qjs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~qjs//:qjs" + } + }, + "cosmos-bzip2": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-bzip2", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~bzip2//:bzip2" + } + }, + "cosmos-nesemu1": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nesemu1", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nesemu1//:nesemu1" + } + }, + "cosmos-echo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-echo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~echo//:echo" + } + }, + "cosmos-id": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-id", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~id//:id" + } + }, + "cosmos-join": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-join", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~join//:join" + } + }, + "cosmos-curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-curl", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~curl//:curl" + } + }, + "cosmos-printenv": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printenv", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printenv//:printenv" + } + }, + "cosmos-pinky": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pinky", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pinky//:pinky" + } + }, + "cosmos-pr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pr//:pr" + } + }, + "cosmos-xz": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-xz", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~xz//:xz" + } + }, + "cosmos-sqlite3": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sqlite3", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sqlite3//:sqlite3" + } + }, + "cosmos-rmdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rmdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rmdir//:rmdir" + } + }, + "cosmos-chmod": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chmod", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chmod//:chmod" + } + }, + "cosmos-mktemper": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mktemper", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemper//:mktemper" + } + }, + "cosmos-false": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-false", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~false//:false" + } + }, + "cosmos-verynice": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-verynice", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~verynice//:verynice" + } + }, + "cosmos-redbean": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-redbean", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~redbean//:redbean" + } + }, + "cosmos-install": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-install", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~install//:install" + } + }, + "cosmos-fold": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-fold", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~fold//:fold" + } + }, + "cosmos-tac": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tac", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tac//:tac" + } + }, + "cosmos-uname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uname//:uname" + } + }, + "cosmos-rm": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rm", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rm//:rm" + } + }, + "cosmos-mktemp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mktemp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemp//:mktemp" + } + }, + "cosmos-sha512sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha512sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha512sum//:sha512sum" + } + }, + "cosmos-xargs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-xargs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~xargs//:xargs" + } + }, + "cosmos-comm": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-comm", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~comm//:comm" + } + }, + "cosmos-dirname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dirname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dirname//:dirname" + } + }, + "cosmos-nproc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nproc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nproc//:nproc" + } + }, + "cosmos-logname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-logname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~logname//:logname" + } + }, + "cosmos-realpath": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-realpath", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~realpath//:realpath" + } + }, + "cosmos-mkfifo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mkfifo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mkfifo//:mkfifo" + } + }, + "cosmos-pathchk": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pathchk", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pathchk//:pathchk" + } + }, + "cosmos-dir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dir//:dir" + } + }, + "cosmos-fmt": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-fmt", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~fmt//:fmt" + } + }, + "cosmos-pledge": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pledge", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pledge//:pledge" + } + }, + "cosmos-kill": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-kill", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~kill//:kill" + } + }, + "cosmos-nice": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nice", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nice//:nice" + } + }, + "cosmos-chgrp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chgrp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chgrp//:chgrp" + } + }, + "cosmos-zstd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zstd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zstd//:zstd" + } + }, + "cosmos-ttyinfo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ttyinfo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ttyinfo//:ttyinfo" + } + }, + "cosmos-md5sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-md5sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~md5sum//:md5sum" + } + }, + "cosmos-b2sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-b2sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~b2sum//:b2sum" + } + }, + "cosmos-greenbean": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-greenbean", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~greenbean//:greenbean" + } + }, + "cosmos-truncate": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-truncate", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~truncate//:truncate" + } + }, + "cosmos-basenc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-basenc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~basenc//:basenc" + } + }, + "cosmos-sha256sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha256sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha256sum//:sha256sum" + } + }, + "cosmos-who": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-who", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~who//:who" + } + }, + "cosmos-od": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-od", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~od//:od" + } + }, + "cosmos-base64": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-base64", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~base64//:base64" + } + }, + "cosmos-nl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nl", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nl//:nl" + } + }, + "cosmos-emacsclient": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-emacsclient", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~emacsclient//:emacsclient" + } + }, + "cosmos-tar": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tar", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tar//:tar" + } + }, + "cosmos-wc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wc//:wc" + } + }, + "cosmos-cat": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cat", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cat//:cat" + } + }, + "cosmos-touch": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-touch", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~touch//:touch" + } + }, + "cosmos-vdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-vdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~vdir//:vdir" + } + }, + "cosmos-expand": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-expand", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~expand//:expand" + } + }, + "cosmos-tail": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tail", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tail//:tail" + } + }, + "cosmos-gzip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-gzip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~gzip//:gzip" + } + }, + "cosmos-stat": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-stat", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~stat//:stat" + } + }, + "cosmos-whoami": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-whoami", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~whoami//:whoami" + } + }, + "cosmos-locate": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-locate", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~locate//:locate" + } + }, + "cosmos-lua": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-lua", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~lua//:lua" + } + }, + "cosmos-tsort": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tsort", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tsort//:tsort" + } + }, + "cosmos-brotli": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-brotli", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~brotli//:brotli" + } + }, + "cosmos-factor": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-factor", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~factor//:factor" + } + }, + "cosmos-printimage": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printimage", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printimage//:printimage" + } + }, + "cosmos-shuf": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-shuf", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~shuf//:shuf" + } + }, + "cosmos-stty": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-stty", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~stty//:stty" + } + }, + "cosmos-du": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-du", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~du//:du" + } + }, + "cosmos-sha1sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha1sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha1sum//:sha1sum" + } + }, + "cosmos-tty": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tty", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tty//:tty" + } + }, + "cosmos-mkdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mkdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mkdir//:mkdir" + } + }, + "cosmos-ptx": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ptx", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ptx//:ptx" + } + }, + "cosmos-awk": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-awk", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~awk//:awk" + } + }, + "cosmos-gmake": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-gmake", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~gmake//:gmake" + } + }, + "cosmos-pigz": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pigz", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pigz//:pigz" + } + }, + "cosmos-sort": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sort", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sort//:sort" + } + }, + "cosmos-tree": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tree", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tree//:tree" + } + }, + "cosmos-printf": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printf", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printf//:printf" + } + }, + "cosmos-date": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-date", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~date//:date" + } + }, + "cosmos-hello": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-hello", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~hello//:hello" + } + }, + "cosmos-df": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-df", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~df//:df" + } + }, + "cosmos-ln": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ln", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ln//:ln" + } + }, + "cosmos-nano": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nano", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nano//:nano" + } + }, + "cosmos-yes": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-yes", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~yes//:yes" + } + }, + "cosmos-dd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dd//:dd" + } + }, + "cosmos-readlink": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-readlink", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~readlink//:readlink" + } + }, + "cosmos-tr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tr//:tr" + } + }, + "cosmos-berry": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-berry", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~berry//:berry" + } + }, + "cosmos-users": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-users", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~users//:users" + } + }, + "cosmos-ls": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ls", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ls//:ls" + } + }, + "cosmos-find": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-find", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~find//:find" + } + }, + "cosmos-env": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-env", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~env//:env" + } + }, + "cosmos-chcon": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chcon", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chcon//:chcon" + } + }, + "cosmos-csplit": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-csplit", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~csplit//:csplit" + } + }, + "cosmos-vim": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-vim", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~vim//:vim" + } + }, + "cosmos-sha224sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha224sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha224sum//:sha224sum" + } + }, + "cosmos-chown": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chown", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chown//:chown" + } + }, + "cosmos-tee": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tee", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tee//:tee" + } + }, + "cosmos-shred": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-shred", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~shred//:shred" + } + }, + "cosmos-ctags": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ctags", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ctags//:ctags" + } + }, + "cosmos-split": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-split", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~split//:split" + } + }, + "cosmos-zip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zip//:zip" + } + }, + "cosmos-groups": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-groups", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~groups//:groups" + } + }, + "cosmos-unbourne": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unbourne", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unbourne//:unbourne" + } + }, + "cosmos-wget": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wget", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wget//:wget" + } + }, + "cosmos-uniq": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uniq", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uniq//:uniq" + } + }, + "cosmos-uptime": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uptime", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uptime//:uptime" + } + }, + "cosmos-unlink": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unlink", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unlink//:unlink" + } + }, + "cosmos-dash": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dash", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dash//:dash" + } + }, + "cosmos-sync": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sync", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sync//:sync" + } + }, + "cosmos-less": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-less", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~less//:less" + } + }, + "cosmos-rsync": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rsync", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rsync//:rsync" + } + }, + "cosmos-true": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-true", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~true//:true" + } + }, + "cosmos-mv": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mv", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mv//:mv" + } + }, + "cosmos-cksum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cksum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cksum//:cksum" + } + }, + "cosmos-test": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-test", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~test//:test" + } + }, + "cosmos-unzip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unzip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unzip//:unzip" + } + } + } + } + } + } } diff --git a/README.md b/README.md index d1e8127a1fa4d78416bc442b79748e6051a6cbff..ba1634c8992956d03fba32760bc57c6878af72e9 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,11 @@ -# `rules_placeholder` +# `rules_curl` -> A Bazel ruleset for placeholder. +> A Bazel ruleset for performing operations with cURL ## Getting Started Add the following to `MODULE.bazel`: ```py -bazel_dep(name="rules_placeholder", version="0.0.0") +bazel_dep(module_name = "rules_curl", version = "0.0.0") ``` - diff --git a/curl/toolchain/cli/BUILD.bazel b/curl/toolchain/cli/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..32536b19250d3c61149147977d20393cc967d71c --- /dev/null +++ b/curl/toolchain/cli/BUILD.bazel @@ -0,0 +1,24 @@ +load("@rules_toolchain//toolchain/test:defs.bzl", "toolchain_test") + +toolchain_type( + name = "type", + visibility = ["//visibility:public"], +) + +toolchain( + name = "cosmos", + toolchain = "@cosmos-curl//:curl", + toolchain_type = ":type", +) + +alias( + name = "resolved", + actual = "@resolved-curl", + visibility = ["//visibility:public"], +) + +toolchain_test( + name = "test", + args = ["--version"], + toolchains = [":resolved"], +) diff --git a/e2e/.bazelrc b/e2e/.bazelrc index 9931842e7d152e956260e9e14dc7034db45d161d..6ecafcda4bf896d324562c319aca01989150a413 100644 --- a/e2e/.bazelrc +++ b/e2e/.bazelrc @@ -1,5 +1,11 @@ -# Enable `bzlmod` -common --enable_bzlmod +# Authentication +common --credential_helper=gitlab.arm.com=%workspace%/.credentials.sh + +# `bzlmod` pre-release registries +common --registry https://bcr.bazel.build +common --registry=https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads +common --registry=https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads +common --registry=https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads # Build cache build --experimental_guard_against_concurrent_changes @@ -10,5 +16,8 @@ build --incompatible_strict_action_env # Prevent symlink forest under `.runfiles/wsname/external/repo` build --nolegacy_external_runfiles +# Avoid building all targets when testing +test --build_tests_only + # User-specific .bazelrc try-import %workspace%/.bazelrc.user diff --git a/e2e/.bazelrc.ci b/e2e/.bazelrc.ci index 5af25a132c84aad13448e0f353fc1307ab7576fd..f7e08f12d92b5d1df101a98d2ed50a4beb8f0fb0 100644 --- a/e2e/.bazelrc.ci +++ b/e2e/.bazelrc.ci @@ -22,9 +22,6 @@ common --attempt_to_print_relative_paths # Output as much information in the CI log about failures as possible build --verbose_failures -# Avoid building all targets when testing -test --build_tests_only - # Noisy logs but allows debugging CI run failures test --test_output=errors diff --git a/e2e/.bazelversion b/e2e/.bazelversion index 6543a03467f9e7a04e9ce102a32e3d1bf460789d..35907cd9caaf234e2f769bf782a28591cb894e1d 100644 --- a/e2e/.bazelversion +++ b/e2e/.bazelversion @@ -1,2 +1 @@ -last_rc -# TODO: relax this once we have `use_rule_repo` +7.x diff --git a/e2e/.credentials.sh b/e2e/.credentials.sh new file mode 100755 index 0000000000000000000000000000000000000000..221c83d2ad2413bac949f2660eed3cc26ba52532 --- /dev/null +++ b/e2e/.credentials.sh @@ -0,0 +1,88 @@ +#! /bin/sh + +# https://github.com/bazelbuild/proposals/blob/main/designs/2022-06-07-bazel-credential-helpers.md +# https://github.com/docker/docker-credential-helpers + +# Strict shell +set -o errexit -o nounset + +# Validate the command +if test ${#} != 1; then + printf >&2 'Error: unexpected number of arguments: %s\n' "${#}" + exit 1 +elif test "${1}" != "get"; then + printf >&2 'Error: unexpected credentials command: %s\n' "${1}" + exit 1 +fi + +# Read in the JSON +while IFS= read -r LINE; do + printf >&2 'Error: unexpected newline on stdin: %s\n' "${LINE}" + exit 2 +done +JSON="${LINE}" +readonly JSON + +# "Process" the JSON +URI="${JSON}" +URI="${URI#*{}" +URI="${URI#*\"uri\"}" +URI="${URI#*:}" +URI="${URI#*\"}" +URI="${URI%\}*}" +URI="${URI%\"*}" +readonly URI +printf >&2 'URI: %s\n' "${URI}" + +# Grab the host +HOST="${URI}" +HOST="${HOST#https://}" +HOST="${HOST#http://}" +HOST="${HOST%%/*}" +readonly HOST +printf >&2 'HOST: %s\n' "${HOST}" + +# Attempt to parse the `.netrc` +if test -f "${HOME}/.netrc"; then + while IFS= read -r LINE <&3; do + # shellcheck disable=SC2249 + case "${LINE}" in + "machine "*"${HOST}") + while IFS= read -r LINE <&3; do + case "${LINE}" in + "machine "*) + break + ;; + "password "*) + printf >&2 'Using network run commands\n' + printf '{"headers":{"Authorization": ["Bearer %s"]}}\n' "${LINE##password }" + exit 0 + ;; + esac + done + ;; + esac + done 3<"${HOME}/.netrc" +fi + +if ! test -z ${BZLMOD_TOKEN+x}; then + printf >&2 'Using Bazel Module Token\n' + printf '{"headers":{"PRIVATE-TOKEN": ["%s"]}}\n' "${BZLMOD_TOKEN}" + exit 0 +fi + +if ! test -z ${GITLAB_TOKEN+x}; then + printf >&2 'Using GitLab Token\n' + printf '{"headers":{"PRIVATE-TOKEN": ["%s"]}}\n' "${GITLAB_TOKEN}" + exit 0 +fi + +if ! test -z ${CI_JOB_TOKEN+x}; then + printf >&2 'Using CI Job Token\n' + printf '{"headers":{"JOB-TOKEN": ["%s"]}}\n' "${CI_JOB_TOKEN}" + exit 0 +fi + +printf >&2 'No authentication found\n' +printf '{}\n' +exit 0 diff --git a/e2e/BUILD.bazel b/e2e/BUILD.bazel index d1bc2551a51ca825c9bc42583c49bd76b969fb48..289dcf5a062c8115345d46002095e3bcfb03d410 100644 --- a/e2e/BUILD.bazel +++ b/e2e/BUILD.bazel @@ -1,6 +1,10 @@ -load("@rules_placeholder//placeholder:defs.bzl", "placeholder_test") +load("@bazel_skylib//rules:build_test.bzl", "build_test") -placeholder_test( - name = "test", - size = "small", +build_test( + name = "entrypoint", + targets = [ + "@curl//:entrypoint", + "@rules_curl//:cli", + "@rules_curl//:curl", + ], ) diff --git a/e2e/MODULE.bazel b/e2e/MODULE.bazel index f0905252dfa70f809a4955303a9ba2406c1901a8..1a8d9dfde068f9b443592584af19544a7567c788 100644 --- a/e2e/MODULE.bazel +++ b/e2e/MODULE.bazel @@ -1,12 +1,17 @@ module( name = "e2e", bazel_compatibility = [ - ">=6.4.0", + ">=7.0.0", ], ) -bazel_dep(name = "rules_placeholder", version = "0.0.0") +bazel_dep(name = "bazel_skylib", version = "1.5.0") +bazel_dep(name = "rules_toolchain", version = "1.0.0-alpha.13") +bazel_dep(name = "rules_curl") local_path_override( - module_name = "rules_placeholder", + module_name = "rules_curl", path = "..", ) + +export = use_extension("@rules_toolchain//toolchain/export:defs.bzl", "toolchain_export") +use_repo(export, "curl") diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index 51c002d4c7c0d803d2b2194f915e8be71e8d6c70..b36ab5c93817953cecdd33113c4194ad069f5a20 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -1,9 +1,12 @@ { "lockFileVersion": 3, - "moduleFileHash": "0ae7ae7e1528f93aef4bfb44931525ab435a24fd4f480fc0b28f19c1c9a7f66f", + "moduleFileHash": "06ab55b57672627f7e8db892105f6c23b0c892ad5a7b140f5e44e290301ff136", "flags": { "cmdRegistries": [ - "https://bcr.bazel.build/" + "https://bcr.bazel.build", + "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads", + "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads", + "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads" ], "cmdModuleOverrides": {}, "allowedYankedVersions": [], @@ -13,8 +16,8 @@ "compatibilityMode": "ERROR" }, "localOverrideHashes": { - "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787", - "rules_placeholder": "bfe34180a91f3ff908710075c27bf5597532ff414e99589309e1cb2b4ab201e7" + "rules_curl": "4a6425584b697092e3c84bbd14261bdb9b1d46270aa03eef5c52346435e08c1e", + "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787" }, "moduleDepGraph": { "": { @@ -24,22 +27,214 @@ "repoName": "e2e", "executionPlatformsToRegister": [], "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_toolchain//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 16, + "column": 23 + }, + "imports": { + "curl": "curl" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_toolchain": "rules_toolchain@1.0.0-alpha.13", + "rules_curl": "rules_curl@_", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + } + }, + "bazel_skylib@1.5.0": { + "name": "bazel_skylib", + "version": "1.5.0", + "key": "bazel_skylib@1.5.0", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], "extensionUsages": [], "deps": { - "rules_placeholder": "rules_placeholder@_", + "platforms": "platforms@0.0.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "bazel_skylib~1.5.0", + "urls": [ + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + ], + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } } }, - "rules_placeholder@_": { - "name": "rules_placeholder", - "version": "0.0.0", - "key": "rules_placeholder@_", - "repoName": "rules_placeholder", + "rules_toolchain@1.0.0-alpha.13": { + "name": "rules_toolchain", + "version": "1.0.0-alpha.13", + "key": "rules_toolchain@1.0.0-alpha.13", + "repoName": "rules_toolchain", "executionPlatformsToRegister": [], "toolchainsToRegister": [], - "extensionUsages": [], + "extensionUsages": [ + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_toolchain@1.0.0-alpha.13", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "local": "local", + "launcher": "launcher" + }, + "devImports": [], + "tags": [ + { + "tagName": "//toolchain/local/triplet:defs.bzl%toolchain_local_triplet", + "attributeValues": { + "name": "local" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 15, + "column": 8 + } + }, + { + "tagName": "//toolchain/launcher:repository.bzl%launcher", + "attributeValues": { + "name": "launcher" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/modules/rules_toolchain/1.0.0-alpha.13/MODULE.bazel", + "line": 21, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13", + "urls": [ + "https://gitlab.arm.com/bazel/rules_toolchain/-/releases/v1.0.0-alpha.13/downloads/src.tar.gz" + ], + "integrity": "sha512-U0P4j+XjPuAqtmKf9GqW4RPkIyAHUfm+V+9VtmYODKiK2FVtN2ZgH/XFphwvJbP/9Nh5Mqk8YBfg1ED1ObC/kA==", + "strip_prefix": "rules_toolchain-v1.0.0-alpha.13", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_curl@_": { + "name": "rules_curl", + "version": "", + "key": "rules_curl@_", + "repoName": "rules_curl", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//curl/toolchain/cli:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_toolchain//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_curl@_", + "location": { + "file": "@@rules_curl~override//:MODULE.bazel", + "line": 11, + "column": 23 + }, + "imports": { + "cosmos-curl": "cosmos-curl", + "curl": "curl" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "curl", + "target": "@cosmos-curl" + }, + "devDependency": false, + "location": { + "file": "@@rules_curl~override//:MODULE.bazel", + "line": 13, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_curl@_", + "location": { + "file": "@@rules_curl~override//:MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-curl": "resolved-curl" + }, + "devImports": [], + "tags": [ + { + "tagName": "@rules_toolchain//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//curl/toolchain/cli:type", + "name": "resolved-curl" + }, + "devDependency": false, + "location": { + "file": "@@rules_curl~override//:MODULE.bazel", + "line": 21, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], "deps": { + "rules_toolchain": "rules_toolchain@1.0.0-alpha.13", + "rules_cosmos": "rules_cosmos@1.0.0-alpha.1", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } @@ -191,6 +386,7408 @@ "bazel_tools": "bazel_tools@_" } }, + "platforms@0.0.7": { + "name": "platforms", + "version": "0.0.7", + "key": "platforms@0.0.7", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "platforms", + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" + ], + "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_cosmos@1.0.0-alpha.1": { + "name": "rules_cosmos", + "version": "1.0.0-alpha.1", + "key": "rules_cosmos@1.0.0-alpha.1", + "repoName": "rules_cosmos", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_cosmos@1.0.0-alpha.1", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "ape-arm64.elf": "ape-arm64.elf", + "ape-x86_64.elf": "ape-x86_64.elf", + "ape-x86_64.macho": "ape-x86_64.macho", + "ape.pe": "ape.pe", + "ape": "ape", + "ape-awk": "ape-awk", + "awk": "awk", + "ape-b2sum": "ape-b2sum", + "b2sum": "b2sum", + "ape-base32": "ape-base32", + "base32": "base32", + "ape-base64": "ape-base64", + "base64": "base64", + "ape-basename": "ape-basename", + "basename": "basename", + "ape-basenc": "ape-basenc", + "basenc": "basenc", + "ape-bash": "ape-bash", + "bash": "bash", + "ape-berry": "ape-berry", + "berry": "berry", + "ape-brotli": "ape-brotli", + "brotli": "brotli", + "ape-bzip2": "ape-bzip2", + "bzip2": "bzip2", + "ape-cat": "ape-cat", + "cat": "cat", + "ape-chcon": "ape-chcon", + "chcon": "chcon", + "ape-chgrp": "ape-chgrp", + "chgrp": "chgrp", + "ape-chmod": "ape-chmod", + "chmod": "chmod", + "ape-chown": "ape-chown", + "chown": "chown", + "ape-chroot": "ape-chroot", + "chroot": "chroot", + "ape-cksum": "ape-cksum", + "cksum": "cksum", + "ape-clang-format": "ape-clang-format", + "clang-format": "clang-format", + "ape-comm": "ape-comm", + "comm": "comm", + "ape-cp": "ape-cp", + "cp": "cp", + "ape-csplit": "ape-csplit", + "csplit": "csplit", + "ape-ctags": "ape-ctags", + "ctags": "ctags", + "ape-curl": "ape-curl", + "curl": "curl", + "ape-cut": "ape-cut", + "cut": "cut", + "ape-dash": "ape-dash", + "dash": "dash", + "ape-datasette": "ape-datasette", + "datasette": "datasette", + "ape-date": "ape-date", + "date": "date", + "ape-dd": "ape-dd", + "dd": "dd", + "ape-df": "ape-df", + "df": "df", + "ape-dir": "ape-dir", + "dir": "dir", + "ape-dircolors": "ape-dircolors", + "dircolors": "dircolors", + "ape-dirname": "ape-dirname", + "dirname": "dirname", + "ape-du": "ape-du", + "du": "du", + "ape-echo": "ape-echo", + "echo": "echo", + "ape-emacs": "ape-emacs", + "emacs": "emacs", + "ape-emacsclient": "ape-emacsclient", + "emacsclient": "emacsclient", + "ape-env": "ape-env", + "env": "env", + "ape-expand": "ape-expand", + "expand": "expand", + "ape-expr": "ape-expr", + "expr": "expr", + "ape-factor": "ape-factor", + "factor": "factor", + "ape-false": "ape-false", + "false": "false", + "ape-find": "ape-find", + "find": "find", + "ape-fmt": "ape-fmt", + "fmt": "fmt", + "ape-fold": "ape-fold", + "fold": "fold", + "ape-gmake": "ape-gmake", + "gmake": "gmake", + "ape-greenbean": "ape-greenbean", + "greenbean": "greenbean", + "ape-grep": "ape-grep", + "grep": "grep", + "ape-groups": "ape-groups", + "groups": "groups", + "ape-gzip": "ape-gzip", + "gzip": "gzip", + "ape-head": "ape-head", + "head": "head", + "ape-hello": "ape-hello", + "hello": "hello", + "ape-id": "ape-id", + "id": "id", + "ape-install": "ape-install", + "install": "install", + "ape-join": "ape-join", + "join": "join", + "ape-kill": "ape-kill", + "kill": "kill", + "ape-less": "ape-less", + "less": "less", + "ape-life": "ape-life", + "life": "life", + "ape-link": "ape-link", + "link": "link", + "ape-llama": "ape-llama", + "llama": "llama", + "ape-ln": "ape-ln", + "ln": "ln", + "ape-locate": "ape-locate", + "locate": "locate", + "ape-logname": "ape-logname", + "logname": "logname", + "ape-ls": "ape-ls", + "ls": "ls", + "ape-lua": "ape-lua", + "lua": "lua", + "ape-make": "ape-make", + "make": "make", + "ape-md5sum": "ape-md5sum", + "md5sum": "md5sum", + "ape-mkdir": "ape-mkdir", + "mkdir": "mkdir", + "ape-mkfifo": "ape-mkfifo", + "mkfifo": "mkfifo", + "ape-mknod": "ape-mknod", + "mknod": "mknod", + "ape-mktemp": "ape-mktemp", + "mktemp": "mktemp", + "ape-mktemper": "ape-mktemper", + "mktemper": "mktemper", + "ape-mv": "ape-mv", + "mv": "mv", + "ape-nano": "ape-nano", + "nano": "nano", + "ape-nesemu1": "ape-nesemu1", + "nesemu1": "nesemu1", + "ape-nice": "ape-nice", + "nice": "nice", + "ape-ninja": "ape-ninja", + "ninja": "ninja", + "ape-nl": "ape-nl", + "nl": "nl", + "ape-nohup": "ape-nohup", + "nohup": "nohup", + "ape-nproc": "ape-nproc", + "nproc": "nproc", + "ape-numfmt": "ape-numfmt", + "numfmt": "numfmt", + "ape-od": "ape-od", + "od": "od", + "ape-paste": "ape-paste", + "paste": "paste", + "ape-pathchk": "ape-pathchk", + "pathchk": "pathchk", + "ape-pigz": "ape-pigz", + "pigz": "pigz", + "ape-pinky": "ape-pinky", + "pinky": "pinky", + "ape-pledge": "ape-pledge", + "pledge": "pledge", + "ape-pr": "ape-pr", + "pr": "pr", + "ape-printenv": "ape-printenv", + "printenv": "printenv", + "ape-printf": "ape-printf", + "printf": "printf", + "ape-printimage": "ape-printimage", + "printimage": "printimage", + "ape-ptx": "ape-ptx", + "ptx": "ptx", + "ape-pwd": "ape-pwd", + "pwd": "pwd", + "ape-python": "ape-python", + "python": "python", + "ape-qjs": "ape-qjs", + "qjs": "qjs", + "ape-readlink": "ape-readlink", + "readlink": "readlink", + "ape-realpath": "ape-realpath", + "realpath": "realpath", + "ape-redbean": "ape-redbean", + "redbean": "redbean", + "ape-rm": "ape-rm", + "rm": "rm", + "ape-rmdir": "ape-rmdir", + "rmdir": "rmdir", + "ape-rsync": "ape-rsync", + "rsync": "rsync", + "ape-runcon": "ape-runcon", + "runcon": "runcon", + "ape-script": "ape-script", + "script": "script", + "ape-sed": "ape-sed", + "sed": "sed", + "ape-seq": "ape-seq", + "seq": "seq", + "ape-sha1sum": "ape-sha1sum", + "sha1sum": "sha1sum", + "ape-sha224sum": "ape-sha224sum", + "sha224sum": "sha224sum", + "ape-sha256sum": "ape-sha256sum", + "sha256sum": "sha256sum", + "ape-sha384sum": "ape-sha384sum", + "sha384sum": "sha384sum", + "ape-sha512sum": "ape-sha512sum", + "sha512sum": "sha512sum", + "ape-shred": "ape-shred", + "shred": "shred", + "ape-shuf": "ape-shuf", + "shuf": "shuf", + "ape-sleep": "ape-sleep", + "sleep": "sleep", + "ape-sort": "ape-sort", + "sort": "sort", + "ape-split": "ape-split", + "split": "split", + "ape-sqlite3": "ape-sqlite3", + "sqlite3": "sqlite3", + "ape-stat": "ape-stat", + "stat": "stat", + "ape-stty": "ape-stty", + "stty": "stty", + "ape-sum": "ape-sum", + "sum": "sum", + "ape-sync": "ape-sync", + "sync": "sync", + "ape-tac": "ape-tac", + "tac": "tac", + "ape-tail": "ape-tail", + "tail": "tail", + "ape-tar": "ape-tar", + "tar": "tar", + "ape-tee": "ape-tee", + "tee": "tee", + "ape-test": "ape-test", + "test": "test", + "ape-tidy": "ape-tidy", + "tidy": "tidy", + "ape-timeout": "ape-timeout", + "timeout": "timeout", + "ape-tmux": "ape-tmux", + "tmux": "tmux", + "ape-touch": "ape-touch", + "touch": "touch", + "ape-tr": "ape-tr", + "tr": "tr", + "ape-tree": "ape-tree", + "tree": "tree", + "ape-true": "ape-true", + "true": "true", + "ape-truncate": "ape-truncate", + "truncate": "truncate", + "ape-tsort": "ape-tsort", + "tsort": "tsort", + "ape-tty": "ape-tty", + "tty": "tty", + "ape-ttyinfo": "ape-ttyinfo", + "ttyinfo": "ttyinfo", + "ape-uname": "ape-uname", + "uname": "uname", + "ape-unbourne": "ape-unbourne", + "unbourne": "unbourne", + "ape-unexpand": "ape-unexpand", + "unexpand": "unexpand", + "ape-uniq": "ape-uniq", + "uniq": "uniq", + "ape-unlink": "ape-unlink", + "unlink": "unlink", + "ape-unzip": "ape-unzip", + "unzip": "unzip", + "ape-uptime": "ape-uptime", + "uptime": "uptime", + "ape-users": "ape-users", + "users": "users", + "ape-vdir": "ape-vdir", + "vdir": "vdir", + "ape-verynice": "ape-verynice", + "verynice": "verynice", + "ape-vim": "ape-vim", + "vim": "vim", + "ape-wall": "ape-wall", + "wall": "wall", + "ape-wc": "ape-wc", + "wc": "wc", + "ape-wget": "ape-wget", + "wget": "wget", + "ape-who": "ape-who", + "who": "who", + "ape-whoami": "ape-whoami", + "whoami": "whoami", + "ape-xargs": "ape-xargs", + "xargs": "xargs", + "ape-xz": "ape-xz", + "xz": "xz", + "ape-yes": "ape-yes", + "yes": "yes", + "ape-zip": "ape-zip", + "zip": "zip", + "ape-zsh": "ape-zsh", + "zsh": "zsh", + "ape-zstd": "ape-zstd", + "zstd": "zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WYUckbagilfXA6pgyoWnuG22V0kI58PhpOS+0CDa+UE=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-arm64.elf" + ], + "name": "ape-arm64.elf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-q/Oxu3GCk1v0jZjcFDxR7lY9KaH9LDkw/1qNjI2COBc=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.elf" + ], + "name": "ape-x86_64.elf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oWyPo217RZYmTNW3k1MEYOLbBa8LG8fF4zSIfim5OJU=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.macho" + ], + "name": "ape-x86_64.macho" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 16, + "column": 18 + } + }, + { + "tagName": "//cosmos/ape/pe:repository.bzl%pe", + "attributeValues": { + "name": "ape.pe" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 32, + "column": 3 + } + }, + { + "tagName": "@rules_toolchain//toolchain/local/select:defs.bzl%toolchain_local_select", + "attributeValues": { + "map": { + "arm64-linux": "@ape-arm64.elf", + "amd64-linux": "@ape-x86_64.elf", + "amd64-darwin": "@ape-x86_64.macho", + "windows": "@ape.pe" + }, + "name": "ape" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 36, + "column": 7 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-L/6XCQ5vyGlel2rAz5z1Nn+cjWA4rXRaMDBB/A1B1Ao=", + "output": "awk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/awk" + ], + "name": "ape-awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-awk//:awk", + "name": "awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-GaoSlpwiXeZg5KgFv6Y6FYutDVmtaO6as4RrIt6AjNY=", + "output": "b2sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/b2sum" + ], + "name": "ape-b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-b2sum//:b2sum", + "name": "b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KVJ2LDlzO6LUN1Cip3d26ZLqJeNkICPEr1CEtYdEkLY=", + "output": "base32", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base32" + ], + "name": "ape-base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-base32//:base32", + "name": "base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-L6BS6aci/th7ucw7/y5A2MIqfLBT95RhyEfI5siuy/s=", + "output": "base64", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base64" + ], + "name": "ape-base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-base64//:base64", + "name": "base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+TZAyOcWht66lllJlbQwKqIt1jk4CVf1/goI6HnIVlE=", + "output": "basename", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basename" + ], + "name": "ape-basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-basename//:basename", + "name": "basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-NgGicKW9uV+5xc/oSEExuH/PleJOnwCDebhk7stAZV8=", + "output": "basenc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basenc" + ], + "name": "ape-basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-basenc//:basenc", + "name": "basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-uH/5vCQx2dWsxfMY31QUJPB5Vz2x+pK9nQ3XolULIm8=", + "output": "bash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bash" + ], + "name": "ape-bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-bash//:bash", + "name": "bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3tGWs2Yc0rGqmlx1W50Fe3Tswvl2EsmxEABOR02yOZA=", + "output": "berry", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/berry" + ], + "name": "ape-berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-berry//:berry", + "name": "berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0x3bS2BFsgpLw/cnInch54BZzMw0aHHMcgvquLKmYK0=", + "output": "brotli", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/brotli" + ], + "name": "ape-brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-brotli//:brotli", + "name": "brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Teep6rhoNrBVRMgaOLRsAyq1s4iKk6KKITgU4l51qZA=", + "output": "bzip2", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bzip2" + ], + "name": "ape-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-bzip2//:bzip2", + "name": "bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-QlCeHxjEgWfBY7LQiADHJi+uudTo+oTHpaL8Dlorj2c=", + "output": "cat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cat" + ], + "name": "ape-cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cat//:cat", + "name": "cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9U+eUXrFnsdjYcD0035Kg3XC1J0gU28hK6dxPlsw2G0=", + "output": "chcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chcon" + ], + "name": "ape-chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chcon//:chcon", + "name": "chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7R+QACW3Sz/D2ZBKyhqEykwHou6Insee01eHqXdiqHo=", + "output": "chgrp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chgrp" + ], + "name": "ape-chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chgrp//:chgrp", + "name": "chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Ml5b42b7YHBO0xzeIfiN5ohBOSdPDveS8RZfoPHlFaI=", + "output": "chmod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chmod" + ], + "name": "ape-chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chmod//:chmod", + "name": "chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-SmjdbLY0UkHq+EbIWbMmpCexmhQB/29KWONWzRTyIys=", + "output": "chown", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chown" + ], + "name": "ape-chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chown//:chown", + "name": "chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-o2xdphc+QwJ8vR7uRVl8xPXQHY5eHCIGeNwp8Nxc8SA=", + "output": "chroot", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chroot" + ], + "name": "ape-chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-chroot//:chroot", + "name": "chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WitBRvVH+cPbvXGlOwVyqMV2lgeF0BPOpG5ImGmLzEU=", + "output": "cksum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cksum" + ], + "name": "ape-cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cksum//:cksum", + "name": "cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", + "output": "clang-format", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/clang-format" + ], + "name": "ape-clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-clang-format//:clang-format", + "name": "clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ivuJjEm5AYm6076eXwc7FDqz2UZX9LSt0EQ3YoQFnzE=", + "output": "comm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/comm" + ], + "name": "ape-comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-comm//:comm", + "name": "comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-zGVr2Bk0dhRWVt7KeuFkfbRX//yCwQl0MV8xi34ruiE=", + "output": "cp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cp" + ], + "name": "ape-cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cp//:cp", + "name": "cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rs3yGq0E94Yh0tcSxHj2xvafSYjJDXezNS2eGO+f5Do=", + "output": "csplit", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/csplit" + ], + "name": "ape-csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-csplit//:csplit", + "name": "csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-NNiDbnKgZs9THRXW35GQF3BrYRixcVpImYUa9iZoPdY=", + "output": "ctags", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ctags" + ], + "name": "ape-ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ctags//:ctags", + "name": "ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pOPeSvp3FWm0T6YJha6w4NwWzKKsOvBkiRbO7RD+YM4=", + "output": "curl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/curl" + ], + "name": "ape-curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-curl//:curl", + "name": "curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0Xu9tbCWY2ErB1Vu5klLuCGAlmub3xRk/RawWWoFr48=", + "output": "cut", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cut" + ], + "name": "ape-cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-cut//:cut", + "name": "cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-e28n45l75Tr8cHF+DX3qNe6nmZhyJDgLzMF2tJSZbQ8=", + "output": "dash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dash" + ], + "name": "ape-dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dash//:dash", + "name": "dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+2/MHG8dryuDNU9pFCHiJbpMoJZoG/0/iAf7ZivBpGU=", + "output": "datasette", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/datasette" + ], + "name": "ape-datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-datasette//:datasette", + "name": "datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9YUybnuf7F6NLvs7+15+4KKzevTRX0brPA3jv3ZZgro=", + "output": "date", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/date" + ], + "name": "ape-date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-date//:date", + "name": "date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9xs6mcP3zWEXNknfaYEw7mCZsEveFTIX8skJRnBQ+R8=", + "output": "dd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dd" + ], + "name": "ape-dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dd//:dd", + "name": "dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0C+RoZ6SaQ9bPVVwfmyZdP5L1SykDZFMvFXHjvQ8jl8=", + "output": "df", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/df" + ], + "name": "ape-df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-df//:df", + "name": "df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-p7/SAjoYD2yZmZSkceNdo824CB5b2YJQ5m2c86Qwoxo=", + "output": "dir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dir" + ], + "name": "ape-dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dir//:dir", + "name": "dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-BfWp8zUwsqKXRhdxeluvuhdBYV9EZuMgw0WZDvpUnMI=", + "output": "dircolors", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dircolors" + ], + "name": "ape-dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dircolors//:dircolors", + "name": "dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-do7L0xWqE6r0UxcVKXNOh/N7SEh2cBrfQLp2y3dpp/c=", + "output": "dirname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dirname" + ], + "name": "ape-dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-dirname//:dirname", + "name": "dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+43j5Ov8EZ4CcXBOJFP+b3DaLWqavwTGZeJ/L5GQUNk=", + "output": "du", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/du" + ], + "name": "ape-du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-du//:du", + "name": "du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oaBC3x4Ts+CEI2UqM/YI8k1q5Ud/J2UQfWH4IILALmw=", + "output": "echo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/echo" + ], + "name": "ape-echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-echo//:echo", + "name": "echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7FDLQVDS6sBwWICaONqCfRcIw0w7tWecYmq9/UE4zog=", + "output": "emacs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacs" + ], + "name": "ape-emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-emacs//:emacs", + "name": "emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-4j4g4s81gPzye27bASo4wmPOu2p80I8uIzMFC1QVSME=", + "output": "emacsclient", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacsclient" + ], + "name": "ape-emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-emacsclient//:emacsclient", + "name": "emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-bfKNgkpnGRStT5QfHgZcC0RJFd4VLJbgLthU010iSGo=", + "output": "env", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/env" + ], + "name": "ape-env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-env//:env", + "name": "env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-eRZ9h8oUqb0KV+ZU0heHtItPEkHMYltd+tEAitzB1Hw=", + "output": "expand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expand" + ], + "name": "ape-expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-expand//:expand", + "name": "expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3W0o/RomE/No9tbYhLfwa1X3WuPUde/EJGZLKM9uRhA=", + "output": "expr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expr" + ], + "name": "ape-expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-expr//:expr", + "name": "expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-78brRdtq90rnwCvLDALn8Qbm5adFdD5i18I6EACGfms=", + "output": "factor", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/factor" + ], + "name": "ape-factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-factor//:factor", + "name": "factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-djpJwmPkS77w3B/DbNkrFKnw8FDiMTZs/kNSfvqE2Xk=", + "output": "false", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/false" + ], + "name": "ape-false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-false//:false", + "name": "false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-QgZxkbiCL6dWewPSV1CYhg2D6+Trfy4ezGIZ/xsTs8c=", + "output": "find", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/find" + ], + "name": "ape-find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-find//:find", + "name": "find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3EVsR8K0vlkhxK+eMBg57euCI28PcXS5I1sITgqpm58=", + "output": "fmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fmt" + ], + "name": "ape-fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-fmt//:fmt", + "name": "fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-R7i2ybtDZwR0r9pt46w53Jsx6D2aeG362M3wOpTrvwE=", + "output": "fold", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fold" + ], + "name": "ape-fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-fold//:fold", + "name": "fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-kVx885AMt0pUw30vMkQHq6nfcpzGyLJaxnNmFgoqI9U=", + "output": "gmake", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gmake" + ], + "name": "ape-gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-gmake//:gmake", + "name": "gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-LpIS0vOtJ6tzc24IFVnKCs7t0ihVxUFVTm3+tJAa9rs=", + "output": "greenbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/greenbean" + ], + "name": "ape-greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-greenbean//:greenbean", + "name": "greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IC0TekjEN6KK3qT0VYK7hMTc5kjrXTFvBXKE3AiO2kY=", + "output": "grep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/grep" + ], + "name": "ape-grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-grep//:grep", + "name": "grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-UR05dumcot/bQe03vUnwmdAPVA+tuWIT6xyU+NQP7P4=", + "output": "groups", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/groups" + ], + "name": "ape-groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-groups//:groups", + "name": "groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-PxwuXMmyoi44qXAQ+/zi10RRjLz1S3FDvtGCZxNxOGI=", + "output": "gzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gzip" + ], + "name": "ape-gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-gzip//:gzip", + "name": "gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jB9uy/H8iOFVHaAF+ew1M4VuqyfrlZjDI3bI5/fBji0=", + "output": "head", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/head" + ], + "name": "ape-head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-head//:head", + "name": "head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-wmz/Gry0Ut1TOEod3y81+iyNcmKw9r5ugEOScfLpUqQ=", + "output": "hello", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/hello" + ], + "name": "ape-hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-hello//:hello", + "name": "hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-m7Dk9LU9pFAyGT1mErMwItce1FrErS0bRGsQ7bayGag=", + "output": "id", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/id" + ], + "name": "ape-id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-id//:id", + "name": "id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KWRc7xVYg+Wekm7EwrGvEuz6yFOdgB1yvLTV63GNCV4=", + "output": "install", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/install" + ], + "name": "ape-install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-install//:install", + "name": "install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-EdLcVV+qVnxLMumDbLQs0MSQ7wrOiI06c78haOT+Ck8=", + "output": "join", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/join" + ], + "name": "ape-join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-join//:join", + "name": "join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-b4UufNPgWz55yHR+k5OdwTBZyVBjY6WtVZ4HEMLr30I=", + "output": "kill", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/kill" + ], + "name": "ape-kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-kill//:kill", + "name": "kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-enwicIhlycMwQttEmHsWpx00m20nqIS/DLt4IHO0I8g=", + "output": "less", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/less" + ], + "name": "ape-less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-less//:less", + "name": "less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rhmCu+Ub8OrG4CH9Hnwgw2oQVWf8RTpX2oNTKSEKeZM=", + "output": "life", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/life" + ], + "name": "ape-life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-life//:life", + "name": "life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-h2MKF11tX3LnkVF2aZYHTKGqjrmqDfTQNF+vW/LGMyM=", + "output": "link", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/link" + ], + "name": "ape-link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-link//:link", + "name": "link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8EVOk68eZ4AZJ2h8AmmlgfV2gHj52zzdLx9ibJaYmfE=", + "output": "llama", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/llama" + ], + "name": "ape-llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-llama//:llama", + "name": "llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-FriLh1k6Cl11yTHswZVVsJPlF+Sc9JT6uRjhKzjEW64=", + "output": "ln", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ln" + ], + "name": "ape-ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ln//:ln", + "name": "ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7nM47L1FPFcKgrayInKIjFBPUmJP9Vi5YC4jS+syHRQ=", + "output": "locate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/locate" + ], + "name": "ape-locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-locate//:locate", + "name": "locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-72+wGF+sClLqYuj1Drnjxv/ABYnYB7DC35n2tvg5bX4=", + "output": "logname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/logname" + ], + "name": "ape-logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-logname//:logname", + "name": "logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rey5QIeu21UB4L3U6ZIngaeZl1WOcViPZmpJ3URvDZM=", + "output": "ls", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ls" + ], + "name": "ape-ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ls//:ls", + "name": "ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-lPF7Jd3+IliCpCzgrry/d+o6LtPDwEdGKJvk+SoKDtQ=", + "output": "lua", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/lua" + ], + "name": "ape-lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-lua//:lua", + "name": "lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jmbPzMhemQqBcAE4sPyOoI0pzjSo13nykAhsq3Jn+pc=", + "output": "make", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/make" + ], + "name": "ape-make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-make//:make", + "name": "make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-kA7ySZfp8NGFzeFMVq5e5BBm/ELxgTNTBkH9kXY5lhQ=", + "output": "md5sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/md5sum" + ], + "name": "ape-md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-md5sum//:md5sum", + "name": "md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-LxEoIRmJVcdgA5nnYMEyuWhtJALz7rfKdQza3UY9EXs=", + "output": "mkdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkdir" + ], + "name": "ape-mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mkdir//:mkdir", + "name": "mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DsS9Q0qSnAtpQplF96sPs3cJfF62P6ic7K9THDD3J9U=", + "output": "mkfifo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkfifo" + ], + "name": "ape-mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mkfifo//:mkfifo", + "name": "mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2yKTh4pUH4nzZnsJzmm9YDALPEfJ1p46iVjqTsibNac=", + "output": "mknod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mknod" + ], + "name": "ape-mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mknod//:mknod", + "name": "mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-r568xzQ0RYW07Lx/dMEN2oued14nY8/bCwWU0l8RNdM=", + "output": "mktemp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemp" + ], + "name": "ape-mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mktemp//:mktemp", + "name": "mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-mXjgWQ8ta7rsqg9NI3AnfCaEbJ0OxpSZCHoDLTn9T9w=", + "output": "mktemper", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemper" + ], + "name": "ape-mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mktemper//:mktemper", + "name": "mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rX1wfzu57rdGXsELlWaUyL7YTeUyoywFGIXrrKoUQGE=", + "output": "mv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mv" + ], + "name": "ape-mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-mv//:mv", + "name": "mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-tEZ6Ifz9IFuJryEURc6RaDjZxg7iVFvxSDvYRnhpVv0=", + "output": "nano", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nano" + ], + "name": "ape-nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nano//:nano", + "name": "nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jSgFpOEgglaFDd5IgVEwV9DD7OJEhoBBI6vddGcS1Lo=", + "output": "nesemu1", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nesemu1" + ], + "name": "ape-nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nesemu1//:nesemu1", + "name": "nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-WY4vdvaY+uwqkeUupUdaWjEgSZrqWQAOkUBcrEzzppY=", + "output": "nice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nice" + ], + "name": "ape-nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nice//:nice", + "name": "nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ALAx5OFud0Ny0lHENIykc1LfRsBH39NqHmbkSnXpRxw=", + "output": "ninja", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ninja" + ], + "name": "ape-ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ninja//:ninja", + "name": "ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7NTNrkFQWXoNt6GCrQyRFPC/drWHtJUKOU9LkA1SeVE=", + "output": "nl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nl" + ], + "name": "ape-nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nl//:nl", + "name": "nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ov0ymvfz+iqToWIHgLZ9GvlUVLCWsvAT2n1kHetfZi0=", + "output": "nohup", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nohup" + ], + "name": "ape-nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nohup//:nohup", + "name": "nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-7P5oDE/hBe3o18+xaWLuEix1uVnJH7V4/aDNyPXcz/A=", + "output": "nproc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nproc" + ], + "name": "ape-nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-nproc//:nproc", + "name": "nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-cVaJG53XE2JmCyHtCQhi7tzSor9kdmWZWhI/ZkYwr/I=", + "output": "numfmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/numfmt" + ], + "name": "ape-numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-numfmt//:numfmt", + "name": "numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gNNnixyQNkBE1oHBSE0O7R8uTCCZNZupBtqO7Wx+xds=", + "output": "od", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/od" + ], + "name": "ape-od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-od//:od", + "name": "od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-fSqWz5Qt32pnmjpCcqKf8Eq2uQK3A+kBLbJKIhgLGbs=", + "output": "paste", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/paste" + ], + "name": "ape-paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-paste//:paste", + "name": "paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-+pJKNxAm1PzPrAQbQOSiEeMDgohv34nRNglLt58JRhM=", + "output": "pathchk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pathchk" + ], + "name": "ape-pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pathchk//:pathchk", + "name": "pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-neR0INVhYPonCUWyMbownwG8pXc/+WZEoG1tGSOCcnk=", + "output": "pigz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pigz" + ], + "name": "ape-pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pigz//:pigz", + "name": "pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-qktEtm4kQY+NZdthnl7vM6QFI1ieOziMWJa25szI0BU=", + "output": "pinky", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pinky" + ], + "name": "ape-pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pinky//:pinky", + "name": "pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DBuoptCsEnxtUfCdnJwpMhgiLOk+j6WqGRBWq7XHVlQ=", + "output": "pledge", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pledge" + ], + "name": "ape-pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pledge//:pledge", + "name": "pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Txiw5w8jFGhOwNgIRFKrFnhfgRHgF6Kj7dpX8RVAfjE=", + "output": "pr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pr" + ], + "name": "ape-pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pr//:pr", + "name": "pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gIviB/AfzVcC3rT+Tm+JWVq05aAmVjl4NYmaTvD97R4=", + "output": "printenv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printenv" + ], + "name": "ape-printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printenv//:printenv", + "name": "printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-XJ+5nYvXQosvg0fmt0TqxyogQFl4TOmOVECybqQCAQI=", + "output": "printf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printf" + ], + "name": "ape-printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printf//:printf", + "name": "printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ETGvBd5ixJMIoW6oMM1prijnvrjL2geCTBwP699jKyw=", + "output": "printimage", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printimage" + ], + "name": "ape-printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-printimage//:printimage", + "name": "printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-CXfqZ6zGWs/PzOLzNoDaPqS2XIK/KMWRsvFBBfx/CeQ=", + "output": "ptx", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ptx" + ], + "name": "ape-ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ptx//:ptx", + "name": "ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-fc9y/oBB2uWbz2n2YMO5E+USOKnSVjJ2B7vezHe83Z0=", + "output": "pwd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pwd" + ], + "name": "ape-pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-pwd//:pwd", + "name": "pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-autrcdsbwpu7HyiXjIqUjwKG5gtTwBxJxORs0xIrZiw=", + "output": "python", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/python" + ], + "name": "ape-python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-python//:python", + "name": "python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IzMWyCtBfHbGx/RH+PWgEVs1M1lCTIjEMZ4T8jGLLLs=", + "output": "qjs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/qjs" + ], + "name": "ape-qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-qjs//:qjs", + "name": "qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-sk17dpwRyzcrbmrMdo5BTaEAeuPL46dvJt1N9FTA9/4=", + "output": "readlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/readlink" + ], + "name": "ape-readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-readlink//:readlink", + "name": "readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-57coUej2pyRKuIb0maayHqEHeyefv4iKI7DdJHdlfmk=", + "output": "realpath", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/realpath" + ], + "name": "ape-realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-realpath//:realpath", + "name": "realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-AxMjGqvfEQeZMJeDd2coCtTw/P28uQ5vFnuk3DARdIw=", + "output": "redbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/redbean" + ], + "name": "ape-redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-redbean//:redbean", + "name": "redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Q752EgtwP86tjdOteCOn3AUm5bFDzQmP/09FqgLY8vs=", + "output": "rm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rm" + ], + "name": "ape-rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rm//:rm", + "name": "rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-5hJEvqD9v8jZyllDfAXnQkV0IbE0TbE9TTzn3kKKKSw=", + "output": "rmdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rmdir" + ], + "name": "ape-rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rmdir//:rmdir", + "name": "rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-yieoMPKMhaU/V/N1lFVm0n+ssgZyOeyA5A8OMKW8Ouc=", + "output": "rsync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rsync" + ], + "name": "ape-rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-rsync//:rsync", + "name": "rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-y3o+vzi9pJfuCIXkwKu9LFBmVUiw6vFHru+S/OrRcLc=", + "output": "runcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/runcon" + ], + "name": "ape-runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-runcon//:runcon", + "name": "runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-DIoiCjveTxmW/wKXIRbGE3V+ct/9beJpPSGL8CZn1vA=", + "output": "script", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/script" + ], + "name": "ape-script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-script//:script", + "name": "script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-iPJJjP+GqFo8EqsBZsHRt9VChDniS53ADifknrFJAiA=", + "output": "sed", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sed" + ], + "name": "ape-sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sed//:sed", + "name": "sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-mXtquMhfoIHY2ZWQuJHPjzyyIKwaNK4bQ8kBfJ/7pI4=", + "output": "seq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/seq" + ], + "name": "ape-seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-seq//:seq", + "name": "seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2jTRBDjQXmilIHJNXlwDUTQBRwp7SIC1trWdG8F90Y0=", + "output": "sha1sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha1sum" + ], + "name": "ape-sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha1sum//:sha1sum", + "name": "sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8/xMb0Po8frP7QMxDoCU1XNQJVVVKe6oD2BUZRe5y6k=", + "output": "sha224sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha224sum" + ], + "name": "ape-sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha224sum//:sha224sum", + "name": "sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HNquOwLp4buMX/w+duu6gd7y0ORk2Pj9zWrnRCiN6nw=", + "output": "sha256sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha256sum" + ], + "name": "ape-sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha256sum//:sha256sum", + "name": "sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-C4FfhXjU+Az4MapjJDds85brDx2cHrMw7vTkWQBm3wI=", + "output": "sha384sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha384sum" + ], + "name": "ape-sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha384sum//:sha384sum", + "name": "sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-FrR/KCVAtAFbLJJZCyrNFgWlU1dYpVBZSbSok7/kUF4=", + "output": "sha512sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha512sum" + ], + "name": "ape-sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sha512sum//:sha512sum", + "name": "sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-bW0aU82OyvAe/T+I+18/5iuahYAORME4L+p2GGMkk1Y=", + "output": "shred", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shred" + ], + "name": "ape-shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-shred//:shred", + "name": "shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HneyotcGba+4xEvzuQZxbOnbUIhFXfVI8z/d1oeLX8k=", + "output": "shuf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shuf" + ], + "name": "ape-shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-shuf//:shuf", + "name": "shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-MRRvz2YSJneo3hsLJB5u8bawx4xhOfokLI+tEQJmuhM=", + "output": "sleep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sleep" + ], + "name": "ape-sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sleep//:sleep", + "name": "sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3VKAHVlzBqpWHS5tJ0OtBnU7sGnZ1EUSU8tuGWuv988=", + "output": "sort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sort" + ], + "name": "ape-sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sort//:sort", + "name": "sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-XmJ7RebkB6nkQQooH9oVYtLV7IS6JJUabBSBspyNFqU=", + "output": "split", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/split" + ], + "name": "ape-split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-split//:split", + "name": "split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Xe33hi2k4XRz86fO95x2DkVIfL5T00pUVWXooJ29bH8=", + "output": "sqlite3", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sqlite3" + ], + "name": "ape-sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sqlite3//:sqlite3", + "name": "sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-PEG4bpiGGf4b8NMrA5R36orjqwfRv2QrA+olwygBgk4=", + "output": "stat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stat" + ], + "name": "ape-stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-stat//:stat", + "name": "stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9Jpvfj5Zb6pHwGl1PsHcc346INa84bTW8YuLokfWmt0=", + "output": "stty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stty" + ], + "name": "ape-stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-stty//:stty", + "name": "stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-HcpxfiyXFRbrMjJbMKI2kzzm+kklXDvrjk7bN01Z7+g=", + "output": "sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sum" + ], + "name": "ape-sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sum//:sum", + "name": "sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-dQUkTupPw1XWw+KiWVk3C3UVOCJsHzpgaaRL6+c5fi4=", + "output": "sync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sync" + ], + "name": "ape-sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-sync//:sync", + "name": "sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-RKVo9/vao5NrHBJw8q4djRyZAIhZXGXC6C1IOPh0RVE=", + "output": "tac", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tac" + ], + "name": "ape-tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tac//:tac", + "name": "tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pkCcuNP1NP8PoXSPOjNQxcCd++Ha9fKEhcL40h2vhs8=", + "output": "tail", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tail" + ], + "name": "ape-tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tail//:tail", + "name": "tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-UqpsW/LDOtJE4AkPLvSgU54kQPF0L2JW8nB6cUx2eeU=", + "output": "tar", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tar" + ], + "name": "ape-tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tar//:tar", + "name": "tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3icXvzVLCKaIiwyhbK8d5xsaKVS1FsrlFqa46n5UsgA=", + "output": "tee", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tee" + ], + "name": "ape-tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tee//:tee", + "name": "tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-rAM1etW/Sh6QiwIEKYJ8wTeMdGrS7JXlZLxvN3WOpJY=", + "output": "test", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/test" + ], + "name": "ape-test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-test//:test", + "name": "test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ino0vYiVbVN3iWPg2QkkAhkt0/6rpQV4gByQOy8Anko=", + "output": "tidy", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tidy" + ], + "name": "ape-tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tidy//:tidy", + "name": "tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-I2cheet197QEuPUUm/vwFd3aa2kbpjS74lWkRPnB4nM=", + "output": "timeout", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/timeout" + ], + "name": "ape-timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-timeout//:timeout", + "name": "timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-YXa8jhJI9onfgaqZBSibiqhTVmrV0m8nVABlX4y2Rq0=", + "output": "tmux", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tmux" + ], + "name": "ape-tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tmux//:tmux", + "name": "tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-IbTnhZPtsp0MVR5YMbPbydQoZW4fdkK+zpLUWzniLMs=", + "output": "touch", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/touch" + ], + "name": "ape-touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-touch//:touch", + "name": "touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2dRx5qpg0gK54dSSIvLX65hXsSDSf0aqSVEqOteJbmU=", + "output": "tr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tr" + ], + "name": "ape-tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tr//:tr", + "name": "tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-9PrlksnmQKYdCrRGnBbXBvqLbPj8ZQmi8XTlHyzZSMw=", + "output": "tree", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tree" + ], + "name": "ape-tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tree//:tree", + "name": "tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-0orWjDT8OYyB4P9bP1I885n9nxVuxncEN5Jz8a+EjY0=", + "output": "true", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/true" + ], + "name": "ape-true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-true//:true", + "name": "true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-lZ7H+u2o/i0frr+3SNLX9wl+dt+Z8bcTkq97MAqwTV4=", + "output": "truncate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/truncate" + ], + "name": "ape-truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-truncate//:truncate", + "name": "truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-VDUxR7n3G2EfoF4WDYWypppVfzXI+kupo6yreBTWq+c=", + "output": "tsort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tsort" + ], + "name": "ape-tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tsort//:tsort", + "name": "tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-3vpXXw5VFHre/OzD+2SOgcS9fvIF4880J1HRtAlFW8c=", + "output": "tty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tty" + ], + "name": "ape-tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-tty//:tty", + "name": "tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-yQ5SZpbLi6dGTjNoF8K9FH3Jfn6DXGiCzEpXcgP1pSM=", + "output": "ttyinfo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ttyinfo" + ], + "name": "ape-ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-ttyinfo//:ttyinfo", + "name": "ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-g/jLlpJ5JddFUPl9wf9mfxWMNByF3GBPwWlY48Hj+7M=", + "output": "uname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uname" + ], + "name": "ape-uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uname//:uname", + "name": "uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ikUALyvGuCHeyvfBrEz89EWJmOJ59X7hq9CWjniSBo8=", + "output": "unbourne", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unbourne" + ], + "name": "ape-unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unbourne//:unbourne", + "name": "unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8Uqi4z/f8vxXRK1QfUohl8MS6bIblMaM7S4VNInJhCA=", + "output": "unexpand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unexpand" + ], + "name": "ape-unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unexpand//:unexpand", + "name": "unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-iTTpfc9j+4f7t0pNGpYBDQJJqlA5BkbCsMypqw+4sRg=", + "output": "uniq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uniq" + ], + "name": "ape-uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uniq//:uniq", + "name": "uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-AYKajItQtnhxAVM7rUEWIdXvlfaWdxW2nu9TwEE620I=", + "output": "unlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unlink" + ], + "name": "ape-unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unlink//:unlink", + "name": "unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-2b+SjxqjLjWICHM3ywRWizKE/GeLB5YS57dPcvAcCRM=", + "output": "unzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unzip" + ], + "name": "ape-unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-unzip//:unzip", + "name": "unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Q8evVkg9AHD4/FMbxC73dGtk68EX2hfqr1L1wpW23Nk=", + "output": "uptime", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uptime" + ], + "name": "ape-uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-uptime//:uptime", + "name": "uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-OzImZcJCLPzMoIBtE2P/uBXoS884jIDN3Qd2BefIpEw=", + "output": "users", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/users" + ], + "name": "ape-users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-users//:users", + "name": "users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-YttpdAkioTnB4ZjUreWdTj64q/JJbiej6FtlXJdyTHo=", + "output": "vdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vdir" + ], + "name": "ape-vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-vdir//:vdir", + "name": "vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-CQl0ivmr2M1hlgsUvgNyJdhgkvGIRtWmMlQQPcqnA1Q=", + "output": "verynice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/verynice" + ], + "name": "ape-verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-verynice//:verynice", + "name": "verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-/OlvTtKd5YlPwR3487Irjd2co6OKVSKartQt5jYDr14=", + "output": "vim", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vim" + ], + "name": "ape-vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-vim//:vim", + "name": "vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pLoNAlndoLNqVyoU4ocKOAWFe6SbVaJJ5gOgo1WFoPY=", + "output": "wall", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wall" + ], + "name": "ape-wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wall//:wall", + "name": "wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-ImV3TUOpfKBK6dCLx9Yhkagrid09Nf/IKqA8M5tDGLs=", + "output": "wc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wc" + ], + "name": "ape-wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wc//:wc", + "name": "wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-EZzyls0b1JQuebKgxkLUeZU//Ej2tycTGg3tMdz5xC4=", + "output": "wget", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wget" + ], + "name": "ape-wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-wget//:wget", + "name": "wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-MDWT8l0+L3alJRru65AVSGnWfnxzWEfg0QwEzqcQkLQ=", + "output": "who", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/who" + ], + "name": "ape-who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-who//:who", + "name": "who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KKSva/mAjJ3WEYH+eh3dXGC0PRtRlGGyOqh0+PV1smI=", + "output": "whoami", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/whoami" + ], + "name": "ape-whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-whoami//:whoami", + "name": "whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-/X84kHdTUhXoLwRoI/iABxuxkCB2EtL6m3G8FCFWjc0=", + "output": "xargs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xargs" + ], + "name": "ape-xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-xargs//:xargs", + "name": "xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-oESVTQvf+W+G6zGqVmWeSsgb44OSQ7ysXCNSs7CGP8c=", + "output": "xz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xz" + ], + "name": "ape-xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-xz//:xz", + "name": "xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Rk6FrLhfWozo179cbfow2cNJ8BcdQC0+w9BGgV63L+M=", + "output": "yes", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/yes" + ], + "name": "ape-yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-yes//:yes", + "name": "yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-hg8DAtRHtxwaEXf5MNuwxONdu3ZWubig70bQUfGPhYQ=", + "output": "zip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zip" + ], + "name": "ape-zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zip//:zip", + "name": "zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-uNvl/ZI6RA8s1Flnlq+J3YzrZh+UYegCpuJ+ZBFMZyA=", + "output": "zsh", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zsh" + ], + "name": "ape-zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zsh//:zsh", + "name": "zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + }, + { + "tagName": "@rules_download//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-gaJEudIltpcHEj9z1WjxxdDXpNHeGj0q1EiYNoCymzg=", + "output": "zstd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zstd" + ], + "name": "ape-zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 52, + "column": 22 + } + }, + { + "tagName": "//cosmos/entrypoint:defs.bzl%cosmos_entrypoint", + "attributeValues": { + "binary": "@ape-zstd//:zstd", + "name": "zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 59, + "column": 26 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_toolchain//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_cosmos@1.0.0-alpha.1", + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 48, + "column": 23 + }, + "imports": {}, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-awk", + "target": "@awk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-b2sum", + "target": "@b2sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-base32", + "target": "@base32" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-base64", + "target": "@base64" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-basename", + "target": "@basename" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-basenc", + "target": "@basenc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-bash", + "target": "@bash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-berry", + "target": "@berry" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-brotli", + "target": "@brotli" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-bzip2", + "target": "@bzip2" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cat", + "target": "@cat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chcon", + "target": "@chcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chgrp", + "target": "@chgrp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chmod", + "target": "@chmod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chown", + "target": "@chown" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-chroot", + "target": "@chroot" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cksum", + "target": "@cksum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-clang-format", + "target": "@clang-format" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-comm", + "target": "@comm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cp", + "target": "@cp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-csplit", + "target": "@csplit" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ctags", + "target": "@ctags" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-curl", + "target": "@curl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-cut", + "target": "@cut" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dash", + "target": "@dash" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-datasette", + "target": "@datasette" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-date", + "target": "@date" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dd", + "target": "@dd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-df", + "target": "@df" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dir", + "target": "@dir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dircolors", + "target": "@dircolors" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-dirname", + "target": "@dirname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-du", + "target": "@du" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-echo", + "target": "@echo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-emacs", + "target": "@emacs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-emacsclient", + "target": "@emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-env", + "target": "@env" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-expand", + "target": "@expand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-expr", + "target": "@expr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-factor", + "target": "@factor" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-false", + "target": "@false" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-find", + "target": "@find" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-fmt", + "target": "@fmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-fold", + "target": "@fold" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-gmake", + "target": "@gmake" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-greenbean", + "target": "@greenbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-grep", + "target": "@grep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-groups", + "target": "@groups" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-gzip", + "target": "@gzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-head", + "target": "@head" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-hello", + "target": "@hello" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-id", + "target": "@id" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-install", + "target": "@install" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-join", + "target": "@join" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-kill", + "target": "@kill" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-less", + "target": "@less" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-life", + "target": "@life" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-link", + "target": "@link" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-llama", + "target": "@llama" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ln", + "target": "@ln" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-locate", + "target": "@locate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-logname", + "target": "@logname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ls", + "target": "@ls" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-lua", + "target": "@lua" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-make", + "target": "@make" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-md5sum", + "target": "@md5sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mkdir", + "target": "@mkdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mkfifo", + "target": "@mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mknod", + "target": "@mknod" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mktemp", + "target": "@mktemp" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mktemper", + "target": "@mktemper" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-mv", + "target": "@mv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nano", + "target": "@nano" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nesemu1", + "target": "@nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nice", + "target": "@nice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ninja", + "target": "@ninja" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nl", + "target": "@nl" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nohup", + "target": "@nohup" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-nproc", + "target": "@nproc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-numfmt", + "target": "@numfmt" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-od", + "target": "@od" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-paste", + "target": "@paste" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pathchk", + "target": "@pathchk" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pigz", + "target": "@pigz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pinky", + "target": "@pinky" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pledge", + "target": "@pledge" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pr", + "target": "@pr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printenv", + "target": "@printenv" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printf", + "target": "@printf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-printimage", + "target": "@printimage" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ptx", + "target": "@ptx" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-pwd", + "target": "@pwd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-python", + "target": "@python" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-qjs", + "target": "@qjs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-readlink", + "target": "@readlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-realpath", + "target": "@realpath" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-redbean", + "target": "@redbean" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rm", + "target": "@rm" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rmdir", + "target": "@rmdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-rsync", + "target": "@rsync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-runcon", + "target": "@runcon" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-script", + "target": "@script" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sed", + "target": "@sed" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-seq", + "target": "@seq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha1sum", + "target": "@sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha224sum", + "target": "@sha224sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha256sum", + "target": "@sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha384sum", + "target": "@sha384sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sha512sum", + "target": "@sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-shred", + "target": "@shred" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-shuf", + "target": "@shuf" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sleep", + "target": "@sleep" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sort", + "target": "@sort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-split", + "target": "@split" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sqlite3", + "target": "@sqlite3" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-stat", + "target": "@stat" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-stty", + "target": "@stty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sum", + "target": "@sum" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-sync", + "target": "@sync" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tac", + "target": "@tac" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tail", + "target": "@tail" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tar", + "target": "@tar" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tee", + "target": "@tee" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-test", + "target": "@test" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tidy", + "target": "@tidy" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-timeout", + "target": "@timeout" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tmux", + "target": "@tmux" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-touch", + "target": "@touch" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tr", + "target": "@tr" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tree", + "target": "@tree" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-true", + "target": "@true" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-truncate", + "target": "@truncate" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tsort", + "target": "@tsort" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-tty", + "target": "@tty" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-ttyinfo", + "target": "@ttyinfo" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uname", + "target": "@uname" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unbourne", + "target": "@unbourne" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unexpand", + "target": "@unexpand" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uniq", + "target": "@uniq" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unlink", + "target": "@unlink" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-unzip", + "target": "@unzip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-uptime", + "target": "@uptime" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-users", + "target": "@users" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-vdir", + "target": "@vdir" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-verynice", + "target": "@verynice" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-vim", + "target": "@vim" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wall", + "target": "@wall" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wc", + "target": "@wc" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-wget", + "target": "@wget" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-who", + "target": "@who" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-whoami", + "target": "@whoami" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-xargs", + "target": "@xargs" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-xz", + "target": "@xz" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-yes", + "target": "@yes" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zip", + "target": "@zip" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zsh", + "target": "@zsh" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "cosmos-zstd", + "target": "@zstd" + }, + "devDependency": false, + "location": { + "file": "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/modules/rules_cosmos/1.0.0-alpha.1/MODULE.bazel", + "line": 63, + "column": 23 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_toolchain": "rules_toolchain@1.0.0-alpha.13", + "rules_download": "rules_download@1.0.0-alpha.5", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_cosmos~1.0.0-alpha.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_cosmos/-/releases/v1.0.0-alpha.1/downloads/src.tar.gz" + ], + "integrity": "sha512-+1//goaMt1X+G73iX1oaGNK6DrR2JUlV5gvLBEwN5Mlzplt9ZymLSlvMPTP/KDhg2KY5Insc15GyBCY88chwsg==", + "strip_prefix": "rules_cosmos-v1.0.0-alpha.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "rules_cc@0.0.9": { "name": "rules_cc", "version": "0.0.9", @@ -321,7 +7918,7 @@ "deps": { "platforms": "platforms@0.0.7", "rules_cc": "rules_cc@0.0.9", - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_proto": "rules_proto@4.0.0", "rules_license": "rules_license@0.0.7", "bazel_tools": "bazel_tools@_", @@ -378,7 +7975,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -455,34 +8052,6 @@ } } }, - "platforms@0.0.7": { - "name": "platforms", - "version": "0.0.7", - "key": "platforms@0.0.7", - "repoName": "platforms", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "platforms", - "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" - ], - "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, "protobuf@3.19.6": { "name": "protobuf", "version": "3.19.6", @@ -492,7 +8061,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.5.0", "zlib": "zlib@1.3", "rules_python": "rules_python@0.4.0", "rules_cc": "rules_cc@0.0.9", @@ -583,7 +8152,7 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.3.0", + "bazel_skylib": "bazel_skylib@1.5.0", "platforms": "platforms@0.0.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -603,19 +8172,15 @@ } } }, - "bazel_skylib@1.3.0": { - "name": "bazel_skylib", - "version": "1.3.0", - "key": "bazel_skylib@1.3.0", - "repoName": "bazel_skylib", + "rules_download@1.0.0-alpha.5": { + "name": "rules_download", + "version": "1.0.0-alpha.5", + "key": "rules_download@1.0.0-alpha.5", + "repoName": "rules_download", "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//toolchains/unittest:cmd_toolchain", - "//toolchains/unittest:bash_toolchain" - ], + "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -623,17 +8188,5298 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "bazel_skylib~1.3.0", + "name": "rules_download~1.0.0-alpha.5", "urls": [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz" + "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.5/downloads/src.tar.gz" ], - "integrity": "sha256-dNVE2W9KW7Yw1GXKi7z+Ix41lOWq5X4e2/F6brPKJQY=", - "strip_prefix": "", + "integrity": "sha512-27Dv7/7Lm8QFYmBBvVawaHkWFdEUS36aYsaZmKKCLusJBrW7/N6nkDbLG8TnZcFXTy0Kd6hKRG6ZgA6oADfutA==", + "strip_prefix": "rules_download-v1.0.0-alpha.5", "remote_patches": {}, "remote_patch_strip": 0 } } } }, - "moduleExtensions": {} + "moduleExtensions": { + "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc" + } + }, + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains" + } + } + } + } + }, + "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_cc": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc" + } + }, + "local_config_cc_toolchains": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf_toolchains", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc_toolchains" + } + } + } + } + }, + "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { + "general": { + "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_sh": { + "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", + "ruleClassName": "sh_config", + "attributes": { + "name": "bazel_tools~sh_configure_extension~local_config_sh" + } + } + } + } + }, + "@@rules_cosmos~1.0.0-alpha.1//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "yVJBByuEikRc+fG9VO4MORV0R/NWlbjblzW2ZpWiE6Q=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "ape-arm64.elf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WYUckbagilfXA6pgyoWnuG22V0kI58PhpOS+0CDa+UE=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-arm64.elf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-arm64.elf" + } + }, + "ape-x86_64.elf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-q/Oxu3GCk1v0jZjcFDxR7lY9KaH9LDkw/1qNjI2COBc=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.elf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-x86_64.elf" + } + }, + "ape-x86_64.macho": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oWyPo217RZYmTNW3k1MEYOLbBa8LG8fF4zSIfim5OJU=", + "output": "ape", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ape-x86_64.macho" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-x86_64.macho" + } + }, + "ape.pe": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/ape/pe:repository.bzl", + "ruleClassName": "pe", + "attributes": { + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape.pe" + } + }, + "ape": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/local/select:repository.bzl", + "ruleClassName": "select", + "attributes": { + "map": { + "arm64-linux": "@ape-arm64.elf", + "amd64-linux": "@ape-x86_64.elf", + "amd64-darwin": "@ape-x86_64.macho", + "windows": "@ape.pe" + }, + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape" + } + }, + "ape-awk": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-L/6XCQ5vyGlel2rAz5z1Nn+cjWA4rXRaMDBB/A1B1Ao=", + "output": "awk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/awk" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-awk" + } + }, + "awk": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-awk//:awk", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~awk" + } + }, + "ape-b2sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-GaoSlpwiXeZg5KgFv6Y6FYutDVmtaO6as4RrIt6AjNY=", + "output": "b2sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/b2sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-b2sum" + } + }, + "b2sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-b2sum//:b2sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~b2sum" + } + }, + "ape-base32": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KVJ2LDlzO6LUN1Cip3d26ZLqJeNkICPEr1CEtYdEkLY=", + "output": "base32", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base32" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base32" + } + }, + "base32": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base32//:base32", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~base32" + } + }, + "ape-base64": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-L6BS6aci/th7ucw7/y5A2MIqfLBT95RhyEfI5siuy/s=", + "output": "base64", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/base64" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base64" + } + }, + "base64": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-base64//:base64", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~base64" + } + }, + "ape-basename": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+TZAyOcWht66lllJlbQwKqIt1jk4CVf1/goI6HnIVlE=", + "output": "basename", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basename" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basename" + } + }, + "basename": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basename//:basename", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~basename" + } + }, + "ape-basenc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-NgGicKW9uV+5xc/oSEExuH/PleJOnwCDebhk7stAZV8=", + "output": "basenc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/basenc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basenc" + } + }, + "basenc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-basenc//:basenc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~basenc" + } + }, + "ape-bash": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uH/5vCQx2dWsxfMY31QUJPB5Vz2x+pK9nQ3XolULIm8=", + "output": "bash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bash" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bash" + } + }, + "bash": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bash//:bash", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~bash" + } + }, + "ape-berry": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3tGWs2Yc0rGqmlx1W50Fe3Tswvl2EsmxEABOR02yOZA=", + "output": "berry", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/berry" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-berry" + } + }, + "berry": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-berry//:berry", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~berry" + } + }, + "ape-brotli": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0x3bS2BFsgpLw/cnInch54BZzMw0aHHMcgvquLKmYK0=", + "output": "brotli", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/brotli" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-brotli" + } + }, + "brotli": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-brotli//:brotli", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~brotli" + } + }, + "ape-bzip2": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Teep6rhoNrBVRMgaOLRsAyq1s4iKk6KKITgU4l51qZA=", + "output": "bzip2", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/bzip2" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bzip2" + } + }, + "bzip2": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-bzip2//:bzip2", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~bzip2" + } + }, + "ape-cat": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-QlCeHxjEgWfBY7LQiADHJi+uudTo+oTHpaL8Dlorj2c=", + "output": "cat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cat" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cat" + } + }, + "cat": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cat//:cat", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cat" + } + }, + "ape-chcon": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9U+eUXrFnsdjYcD0035Kg3XC1J0gU28hK6dxPlsw2G0=", + "output": "chcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chcon" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chcon" + } + }, + "chcon": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chcon//:chcon", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chcon" + } + }, + "ape-chgrp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7R+QACW3Sz/D2ZBKyhqEykwHou6Insee01eHqXdiqHo=", + "output": "chgrp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chgrp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chgrp" + } + }, + "chgrp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chgrp//:chgrp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chgrp" + } + }, + "ape-chmod": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Ml5b42b7YHBO0xzeIfiN5ohBOSdPDveS8RZfoPHlFaI=", + "output": "chmod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chmod" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chmod" + } + }, + "chmod": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chmod//:chmod", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chmod" + } + }, + "ape-chown": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-SmjdbLY0UkHq+EbIWbMmpCexmhQB/29KWONWzRTyIys=", + "output": "chown", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chown" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chown" + } + }, + "chown": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chown//:chown", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chown" + } + }, + "ape-chroot": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-o2xdphc+QwJ8vR7uRVl8xPXQHY5eHCIGeNwp8Nxc8SA=", + "output": "chroot", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/chroot" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chroot" + } + }, + "chroot": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-chroot//:chroot", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~chroot" + } + }, + "ape-cksum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WitBRvVH+cPbvXGlOwVyqMV2lgeF0BPOpG5ImGmLzEU=", + "output": "cksum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cksum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cksum" + } + }, + "cksum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cksum//:cksum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cksum" + } + }, + "ape-clang-format": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", + "output": "clang-format", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/clang-format" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-clang-format" + } + }, + "clang-format": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-clang-format//:clang-format", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~clang-format" + } + }, + "ape-comm": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ivuJjEm5AYm6076eXwc7FDqz2UZX9LSt0EQ3YoQFnzE=", + "output": "comm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/comm" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-comm" + } + }, + "comm": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-comm//:comm", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~comm" + } + }, + "ape-cp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zGVr2Bk0dhRWVt7KeuFkfbRX//yCwQl0MV8xi34ruiE=", + "output": "cp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cp" + } + }, + "cp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cp//:cp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cp" + } + }, + "ape-csplit": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rs3yGq0E94Yh0tcSxHj2xvafSYjJDXezNS2eGO+f5Do=", + "output": "csplit", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/csplit" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-csplit" + } + }, + "csplit": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-csplit//:csplit", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~csplit" + } + }, + "ape-ctags": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-NNiDbnKgZs9THRXW35GQF3BrYRixcVpImYUa9iZoPdY=", + "output": "ctags", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ctags" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ctags" + } + }, + "ctags": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ctags//:ctags", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ctags" + } + }, + "ape-curl": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pOPeSvp3FWm0T6YJha6w4NwWzKKsOvBkiRbO7RD+YM4=", + "output": "curl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/curl" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-curl" + } + }, + "curl": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-curl//:curl", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~curl" + } + }, + "ape-cut": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0Xu9tbCWY2ErB1Vu5klLuCGAlmub3xRk/RawWWoFr48=", + "output": "cut", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/cut" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cut" + } + }, + "cut": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-cut//:cut", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~cut" + } + }, + "ape-dash": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-e28n45l75Tr8cHF+DX3qNe6nmZhyJDgLzMF2tJSZbQ8=", + "output": "dash", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dash" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dash" + } + }, + "dash": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dash//:dash", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dash" + } + }, + "ape-datasette": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+2/MHG8dryuDNU9pFCHiJbpMoJZoG/0/iAf7ZivBpGU=", + "output": "datasette", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/datasette" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-datasette" + } + }, + "datasette": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-datasette//:datasette", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~datasette" + } + }, + "ape-date": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9YUybnuf7F6NLvs7+15+4KKzevTRX0brPA3jv3ZZgro=", + "output": "date", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/date" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-date" + } + }, + "date": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-date//:date", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~date" + } + }, + "ape-dd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9xs6mcP3zWEXNknfaYEw7mCZsEveFTIX8skJRnBQ+R8=", + "output": "dd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dd" + } + }, + "dd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dd//:dd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dd" + } + }, + "ape-df": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0C+RoZ6SaQ9bPVVwfmyZdP5L1SykDZFMvFXHjvQ8jl8=", + "output": "df", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/df" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-df" + } + }, + "df": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-df//:df", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~df" + } + }, + "ape-dir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-p7/SAjoYD2yZmZSkceNdo824CB5b2YJQ5m2c86Qwoxo=", + "output": "dir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dir" + } + }, + "dir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dir//:dir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dir" + } + }, + "ape-dircolors": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-BfWp8zUwsqKXRhdxeluvuhdBYV9EZuMgw0WZDvpUnMI=", + "output": "dircolors", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dircolors" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dircolors" + } + }, + "dircolors": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dircolors//:dircolors", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dircolors" + } + }, + "ape-dirname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-do7L0xWqE6r0UxcVKXNOh/N7SEh2cBrfQLp2y3dpp/c=", + "output": "dirname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/dirname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dirname" + } + }, + "dirname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-dirname//:dirname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~dirname" + } + }, + "ape-du": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+43j5Ov8EZ4CcXBOJFP+b3DaLWqavwTGZeJ/L5GQUNk=", + "output": "du", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/du" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-du" + } + }, + "du": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-du//:du", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~du" + } + }, + "ape-echo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oaBC3x4Ts+CEI2UqM/YI8k1q5Ud/J2UQfWH4IILALmw=", + "output": "echo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/echo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-echo" + } + }, + "echo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-echo//:echo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~echo" + } + }, + "ape-emacs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7FDLQVDS6sBwWICaONqCfRcIw0w7tWecYmq9/UE4zog=", + "output": "emacs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacs" + } + }, + "emacs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacs//:emacs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~emacs" + } + }, + "ape-emacsclient": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-4j4g4s81gPzye27bASo4wmPOu2p80I8uIzMFC1QVSME=", + "output": "emacsclient", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/emacsclient" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacsclient" + } + }, + "emacsclient": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-emacsclient//:emacsclient", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~emacsclient" + } + }, + "ape-env": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-bfKNgkpnGRStT5QfHgZcC0RJFd4VLJbgLthU010iSGo=", + "output": "env", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/env" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-env" + } + }, + "env": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-env//:env", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~env" + } + }, + "ape-expand": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-eRZ9h8oUqb0KV+ZU0heHtItPEkHMYltd+tEAitzB1Hw=", + "output": "expand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expand" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expand" + } + }, + "expand": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expand//:expand", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~expand" + } + }, + "ape-expr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3W0o/RomE/No9tbYhLfwa1X3WuPUde/EJGZLKM9uRhA=", + "output": "expr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/expr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expr" + } + }, + "expr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-expr//:expr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~expr" + } + }, + "ape-factor": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-78brRdtq90rnwCvLDALn8Qbm5adFdD5i18I6EACGfms=", + "output": "factor", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/factor" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-factor" + } + }, + "factor": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-factor//:factor", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~factor" + } + }, + "ape-false": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-djpJwmPkS77w3B/DbNkrFKnw8FDiMTZs/kNSfvqE2Xk=", + "output": "false", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/false" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-false" + } + }, + "false": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-false//:false", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~false" + } + }, + "ape-find": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-QgZxkbiCL6dWewPSV1CYhg2D6+Trfy4ezGIZ/xsTs8c=", + "output": "find", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/find" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-find" + } + }, + "find": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-find//:find", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~find" + } + }, + "ape-fmt": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3EVsR8K0vlkhxK+eMBg57euCI28PcXS5I1sITgqpm58=", + "output": "fmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fmt" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fmt" + } + }, + "fmt": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fmt//:fmt", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~fmt" + } + }, + "ape-fold": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-R7i2ybtDZwR0r9pt46w53Jsx6D2aeG362M3wOpTrvwE=", + "output": "fold", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/fold" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fold" + } + }, + "fold": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-fold//:fold", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~fold" + } + }, + "ape-gmake": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-kVx885AMt0pUw30vMkQHq6nfcpzGyLJaxnNmFgoqI9U=", + "output": "gmake", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gmake" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gmake" + } + }, + "gmake": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gmake//:gmake", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~gmake" + } + }, + "ape-greenbean": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LpIS0vOtJ6tzc24IFVnKCs7t0ihVxUFVTm3+tJAa9rs=", + "output": "greenbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/greenbean" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-greenbean" + } + }, + "greenbean": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-greenbean//:greenbean", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~greenbean" + } + }, + "ape-grep": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IC0TekjEN6KK3qT0VYK7hMTc5kjrXTFvBXKE3AiO2kY=", + "output": "grep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/grep" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-grep" + } + }, + "grep": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-grep//:grep", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~grep" + } + }, + "ape-groups": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UR05dumcot/bQe03vUnwmdAPVA+tuWIT6xyU+NQP7P4=", + "output": "groups", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/groups" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-groups" + } + }, + "groups": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-groups//:groups", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~groups" + } + }, + "ape-gzip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-PxwuXMmyoi44qXAQ+/zi10RRjLz1S3FDvtGCZxNxOGI=", + "output": "gzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/gzip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gzip" + } + }, + "gzip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-gzip//:gzip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~gzip" + } + }, + "ape-head": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jB9uy/H8iOFVHaAF+ew1M4VuqyfrlZjDI3bI5/fBji0=", + "output": "head", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/head" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-head" + } + }, + "head": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-head//:head", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~head" + } + }, + "ape-hello": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wmz/Gry0Ut1TOEod3y81+iyNcmKw9r5ugEOScfLpUqQ=", + "output": "hello", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/hello" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-hello" + } + }, + "hello": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-hello//:hello", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~hello" + } + }, + "ape-id": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-m7Dk9LU9pFAyGT1mErMwItce1FrErS0bRGsQ7bayGag=", + "output": "id", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/id" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-id" + } + }, + "id": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-id//:id", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~id" + } + }, + "ape-install": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KWRc7xVYg+Wekm7EwrGvEuz6yFOdgB1yvLTV63GNCV4=", + "output": "install", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/install" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-install" + } + }, + "install": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-install//:install", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~install" + } + }, + "ape-join": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EdLcVV+qVnxLMumDbLQs0MSQ7wrOiI06c78haOT+Ck8=", + "output": "join", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/join" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-join" + } + }, + "join": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-join//:join", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~join" + } + }, + "ape-kill": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-b4UufNPgWz55yHR+k5OdwTBZyVBjY6WtVZ4HEMLr30I=", + "output": "kill", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/kill" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-kill" + } + }, + "kill": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-kill//:kill", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~kill" + } + }, + "ape-less": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-enwicIhlycMwQttEmHsWpx00m20nqIS/DLt4IHO0I8g=", + "output": "less", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/less" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-less" + } + }, + "less": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-less//:less", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~less" + } + }, + "ape-life": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rhmCu+Ub8OrG4CH9Hnwgw2oQVWf8RTpX2oNTKSEKeZM=", + "output": "life", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/life" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-life" + } + }, + "life": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-life//:life", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~life" + } + }, + "ape-link": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-h2MKF11tX3LnkVF2aZYHTKGqjrmqDfTQNF+vW/LGMyM=", + "output": "link", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/link" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-link" + } + }, + "link": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-link//:link", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~link" + } + }, + "ape-llama": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8EVOk68eZ4AZJ2h8AmmlgfV2gHj52zzdLx9ibJaYmfE=", + "output": "llama", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/llama" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-llama" + } + }, + "llama": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-llama//:llama", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~llama" + } + }, + "ape-ln": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FriLh1k6Cl11yTHswZVVsJPlF+Sc9JT6uRjhKzjEW64=", + "output": "ln", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ln" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ln" + } + }, + "ln": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ln//:ln", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ln" + } + }, + "ape-locate": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7nM47L1FPFcKgrayInKIjFBPUmJP9Vi5YC4jS+syHRQ=", + "output": "locate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/locate" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-locate" + } + }, + "locate": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-locate//:locate", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~locate" + } + }, + "ape-logname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-72+wGF+sClLqYuj1Drnjxv/ABYnYB7DC35n2tvg5bX4=", + "output": "logname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/logname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-logname" + } + }, + "logname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-logname//:logname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~logname" + } + }, + "ape-ls": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rey5QIeu21UB4L3U6ZIngaeZl1WOcViPZmpJ3URvDZM=", + "output": "ls", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ls" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ls" + } + }, + "ls": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ls//:ls", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ls" + } + }, + "ape-lua": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lPF7Jd3+IliCpCzgrry/d+o6LtPDwEdGKJvk+SoKDtQ=", + "output": "lua", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/lua" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-lua" + } + }, + "lua": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-lua//:lua", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~lua" + } + }, + "ape-make": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jmbPzMhemQqBcAE4sPyOoI0pzjSo13nykAhsq3Jn+pc=", + "output": "make", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/make" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-make" + } + }, + "make": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-make//:make", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~make" + } + }, + "ape-md5sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-kA7ySZfp8NGFzeFMVq5e5BBm/ELxgTNTBkH9kXY5lhQ=", + "output": "md5sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/md5sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-md5sum" + } + }, + "md5sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-md5sum//:md5sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~md5sum" + } + }, + "ape-mkdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LxEoIRmJVcdgA5nnYMEyuWhtJALz7rfKdQza3UY9EXs=", + "output": "mkdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkdir" + } + }, + "mkdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkdir//:mkdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mkdir" + } + }, + "ape-mkfifo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DsS9Q0qSnAtpQplF96sPs3cJfF62P6ic7K9THDD3J9U=", + "output": "mkfifo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mkfifo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkfifo" + } + }, + "mkfifo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mkfifo//:mkfifo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mkfifo" + } + }, + "ape-mknod": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2yKTh4pUH4nzZnsJzmm9YDALPEfJ1p46iVjqTsibNac=", + "output": "mknod", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mknod" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mknod" + } + }, + "mknod": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mknod//:mknod", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mknod" + } + }, + "ape-mktemp": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-r568xzQ0RYW07Lx/dMEN2oued14nY8/bCwWU0l8RNdM=", + "output": "mktemp", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemp" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemp" + } + }, + "mktemp": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemp//:mktemp", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemp" + } + }, + "ape-mktemper": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mXjgWQ8ta7rsqg9NI3AnfCaEbJ0OxpSZCHoDLTn9T9w=", + "output": "mktemper", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mktemper" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemper" + } + }, + "mktemper": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mktemper//:mktemper", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemper" + } + }, + "ape-mv": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rX1wfzu57rdGXsELlWaUyL7YTeUyoywFGIXrrKoUQGE=", + "output": "mv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/mv" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mv" + } + }, + "mv": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-mv//:mv", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~mv" + } + }, + "ape-nano": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-tEZ6Ifz9IFuJryEURc6RaDjZxg7iVFvxSDvYRnhpVv0=", + "output": "nano", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nano" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nano" + } + }, + "nano": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nano//:nano", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nano" + } + }, + "ape-nesemu1": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jSgFpOEgglaFDd5IgVEwV9DD7OJEhoBBI6vddGcS1Lo=", + "output": "nesemu1", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nesemu1" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nesemu1" + } + }, + "nesemu1": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nesemu1//:nesemu1", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nesemu1" + } + }, + "ape-nice": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WY4vdvaY+uwqkeUupUdaWjEgSZrqWQAOkUBcrEzzppY=", + "output": "nice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nice" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nice" + } + }, + "nice": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nice//:nice", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nice" + } + }, + "ape-ninja": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ALAx5OFud0Ny0lHENIykc1LfRsBH39NqHmbkSnXpRxw=", + "output": "ninja", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ninja" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ninja" + } + }, + "ninja": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ninja//:ninja", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ninja" + } + }, + "ape-nl": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7NTNrkFQWXoNt6GCrQyRFPC/drWHtJUKOU9LkA1SeVE=", + "output": "nl", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nl" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nl" + } + }, + "nl": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nl//:nl", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nl" + } + }, + "ape-nohup": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ov0ymvfz+iqToWIHgLZ9GvlUVLCWsvAT2n1kHetfZi0=", + "output": "nohup", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nohup" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nohup" + } + }, + "nohup": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nohup//:nohup", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nohup" + } + }, + "ape-nproc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7P5oDE/hBe3o18+xaWLuEix1uVnJH7V4/aDNyPXcz/A=", + "output": "nproc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/nproc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nproc" + } + }, + "nproc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-nproc//:nproc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~nproc" + } + }, + "ape-numfmt": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-cVaJG53XE2JmCyHtCQhi7tzSor9kdmWZWhI/ZkYwr/I=", + "output": "numfmt", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/numfmt" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-numfmt" + } + }, + "numfmt": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-numfmt//:numfmt", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~numfmt" + } + }, + "ape-od": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gNNnixyQNkBE1oHBSE0O7R8uTCCZNZupBtqO7Wx+xds=", + "output": "od", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/od" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-od" + } + }, + "od": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-od//:od", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~od" + } + }, + "ape-paste": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fSqWz5Qt32pnmjpCcqKf8Eq2uQK3A+kBLbJKIhgLGbs=", + "output": "paste", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/paste" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-paste" + } + }, + "paste": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-paste//:paste", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~paste" + } + }, + "ape-pathchk": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+pJKNxAm1PzPrAQbQOSiEeMDgohv34nRNglLt58JRhM=", + "output": "pathchk", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pathchk" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pathchk" + } + }, + "pathchk": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pathchk//:pathchk", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pathchk" + } + }, + "ape-pigz": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-neR0INVhYPonCUWyMbownwG8pXc/+WZEoG1tGSOCcnk=", + "output": "pigz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pigz" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pigz" + } + }, + "pigz": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pigz//:pigz", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pigz" + } + }, + "ape-pinky": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-qktEtm4kQY+NZdthnl7vM6QFI1ieOziMWJa25szI0BU=", + "output": "pinky", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pinky" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pinky" + } + }, + "pinky": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pinky//:pinky", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pinky" + } + }, + "ape-pledge": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DBuoptCsEnxtUfCdnJwpMhgiLOk+j6WqGRBWq7XHVlQ=", + "output": "pledge", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pledge" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pledge" + } + }, + "pledge": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pledge//:pledge", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pledge" + } + }, + "ape-pr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Txiw5w8jFGhOwNgIRFKrFnhfgRHgF6Kj7dpX8RVAfjE=", + "output": "pr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pr" + } + }, + "pr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pr//:pr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pr" + } + }, + "ape-printenv": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gIviB/AfzVcC3rT+Tm+JWVq05aAmVjl4NYmaTvD97R4=", + "output": "printenv", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printenv" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printenv" + } + }, + "printenv": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printenv//:printenv", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printenv" + } + }, + "ape-printf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XJ+5nYvXQosvg0fmt0TqxyogQFl4TOmOVECybqQCAQI=", + "output": "printf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printf" + } + }, + "printf": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printf//:printf", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printf" + } + }, + "ape-printimage": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ETGvBd5ixJMIoW6oMM1prijnvrjL2geCTBwP699jKyw=", + "output": "printimage", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/printimage" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printimage" + } + }, + "printimage": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-printimage//:printimage", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~printimage" + } + }, + "ape-ptx": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CXfqZ6zGWs/PzOLzNoDaPqS2XIK/KMWRsvFBBfx/CeQ=", + "output": "ptx", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ptx" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ptx" + } + }, + "ptx": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ptx//:ptx", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ptx" + } + }, + "ape-pwd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fc9y/oBB2uWbz2n2YMO5E+USOKnSVjJ2B7vezHe83Z0=", + "output": "pwd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/pwd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pwd" + } + }, + "pwd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-pwd//:pwd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~pwd" + } + }, + "ape-python": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-autrcdsbwpu7HyiXjIqUjwKG5gtTwBxJxORs0xIrZiw=", + "output": "python", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/python" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-python" + } + }, + "python": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-python//:python", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~python" + } + }, + "ape-qjs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IzMWyCtBfHbGx/RH+PWgEVs1M1lCTIjEMZ4T8jGLLLs=", + "output": "qjs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/qjs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-qjs" + } + }, + "qjs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-qjs//:qjs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~qjs" + } + }, + "ape-readlink": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-sk17dpwRyzcrbmrMdo5BTaEAeuPL46dvJt1N9FTA9/4=", + "output": "readlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/readlink" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-readlink" + } + }, + "readlink": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-readlink//:readlink", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~readlink" + } + }, + "ape-realpath": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-57coUej2pyRKuIb0maayHqEHeyefv4iKI7DdJHdlfmk=", + "output": "realpath", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/realpath" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-realpath" + } + }, + "realpath": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-realpath//:realpath", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~realpath" + } + }, + "ape-redbean": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-AxMjGqvfEQeZMJeDd2coCtTw/P28uQ5vFnuk3DARdIw=", + "output": "redbean", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/redbean" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-redbean" + } + }, + "redbean": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-redbean//:redbean", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~redbean" + } + }, + "ape-rm": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Q752EgtwP86tjdOteCOn3AUm5bFDzQmP/09FqgLY8vs=", + "output": "rm", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rm" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rm" + } + }, + "rm": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rm//:rm", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rm" + } + }, + "ape-rmdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-5hJEvqD9v8jZyllDfAXnQkV0IbE0TbE9TTzn3kKKKSw=", + "output": "rmdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rmdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rmdir" + } + }, + "rmdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rmdir//:rmdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rmdir" + } + }, + "ape-rsync": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yieoMPKMhaU/V/N1lFVm0n+ssgZyOeyA5A8OMKW8Ouc=", + "output": "rsync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/rsync" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rsync" + } + }, + "rsync": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-rsync//:rsync", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~rsync" + } + }, + "ape-runcon": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-y3o+vzi9pJfuCIXkwKu9LFBmVUiw6vFHru+S/OrRcLc=", + "output": "runcon", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/runcon" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-runcon" + } + }, + "runcon": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-runcon//:runcon", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~runcon" + } + }, + "ape-script": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DIoiCjveTxmW/wKXIRbGE3V+ct/9beJpPSGL8CZn1vA=", + "output": "script", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/script" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-script" + } + }, + "script": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-script//:script", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~script" + } + }, + "ape-sed": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-iPJJjP+GqFo8EqsBZsHRt9VChDniS53ADifknrFJAiA=", + "output": "sed", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sed" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sed" + } + }, + "sed": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sed//:sed", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sed" + } + }, + "ape-seq": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mXtquMhfoIHY2ZWQuJHPjzyyIKwaNK4bQ8kBfJ/7pI4=", + "output": "seq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/seq" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-seq" + } + }, + "seq": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-seq//:seq", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~seq" + } + }, + "ape-sha1sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2jTRBDjQXmilIHJNXlwDUTQBRwp7SIC1trWdG8F90Y0=", + "output": "sha1sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha1sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha1sum" + } + }, + "sha1sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha1sum//:sha1sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha1sum" + } + }, + "ape-sha224sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8/xMb0Po8frP7QMxDoCU1XNQJVVVKe6oD2BUZRe5y6k=", + "output": "sha224sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha224sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha224sum" + } + }, + "sha224sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha224sum//:sha224sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha224sum" + } + }, + "ape-sha256sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HNquOwLp4buMX/w+duu6gd7y0ORk2Pj9zWrnRCiN6nw=", + "output": "sha256sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha256sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha256sum" + } + }, + "sha256sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha256sum//:sha256sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha256sum" + } + }, + "ape-sha384sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-C4FfhXjU+Az4MapjJDds85brDx2cHrMw7vTkWQBm3wI=", + "output": "sha384sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha384sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha384sum" + } + }, + "sha384sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha384sum//:sha384sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha384sum" + } + }, + "ape-sha512sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FrR/KCVAtAFbLJJZCyrNFgWlU1dYpVBZSbSok7/kUF4=", + "output": "sha512sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sha512sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha512sum" + } + }, + "sha512sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sha512sum//:sha512sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sha512sum" + } + }, + "ape-shred": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-bW0aU82OyvAe/T+I+18/5iuahYAORME4L+p2GGMkk1Y=", + "output": "shred", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shred" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shred" + } + }, + "shred": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shred//:shred", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~shred" + } + }, + "ape-shuf": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HneyotcGba+4xEvzuQZxbOnbUIhFXfVI8z/d1oeLX8k=", + "output": "shuf", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/shuf" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shuf" + } + }, + "shuf": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-shuf//:shuf", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~shuf" + } + }, + "ape-sleep": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MRRvz2YSJneo3hsLJB5u8bawx4xhOfokLI+tEQJmuhM=", + "output": "sleep", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sleep" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sleep" + } + }, + "sleep": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sleep//:sleep", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sleep" + } + }, + "ape-sort": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3VKAHVlzBqpWHS5tJ0OtBnU7sGnZ1EUSU8tuGWuv988=", + "output": "sort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sort" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sort" + } + }, + "sort": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sort//:sort", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sort" + } + }, + "ape-split": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XmJ7RebkB6nkQQooH9oVYtLV7IS6JJUabBSBspyNFqU=", + "output": "split", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/split" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-split" + } + }, + "split": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-split//:split", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~split" + } + }, + "ape-sqlite3": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Xe33hi2k4XRz86fO95x2DkVIfL5T00pUVWXooJ29bH8=", + "output": "sqlite3", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sqlite3" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sqlite3" + } + }, + "sqlite3": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sqlite3//:sqlite3", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sqlite3" + } + }, + "ape-stat": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-PEG4bpiGGf4b8NMrA5R36orjqwfRv2QrA+olwygBgk4=", + "output": "stat", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stat" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stat" + } + }, + "stat": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stat//:stat", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~stat" + } + }, + "ape-stty": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9Jpvfj5Zb6pHwGl1PsHcc346INa84bTW8YuLokfWmt0=", + "output": "stty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/stty" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stty" + } + }, + "stty": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-stty//:stty", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~stty" + } + }, + "ape-sum": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HcpxfiyXFRbrMjJbMKI2kzzm+kklXDvrjk7bN01Z7+g=", + "output": "sum", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sum" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sum" + } + }, + "sum": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sum//:sum", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sum" + } + }, + "ape-sync": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-dQUkTupPw1XWw+KiWVk3C3UVOCJsHzpgaaRL6+c5fi4=", + "output": "sync", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/sync" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sync" + } + }, + "sync": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-sync//:sync", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~sync" + } + }, + "ape-tac": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-RKVo9/vao5NrHBJw8q4djRyZAIhZXGXC6C1IOPh0RVE=", + "output": "tac", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tac" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tac" + } + }, + "tac": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tac//:tac", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tac" + } + }, + "ape-tail": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pkCcuNP1NP8PoXSPOjNQxcCd++Ha9fKEhcL40h2vhs8=", + "output": "tail", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tail" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tail" + } + }, + "tail": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tail//:tail", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tail" + } + }, + "ape-tar": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UqpsW/LDOtJE4AkPLvSgU54kQPF0L2JW8nB6cUx2eeU=", + "output": "tar", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tar" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tar" + } + }, + "tar": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tar//:tar", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tar" + } + }, + "ape-tee": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3icXvzVLCKaIiwyhbK8d5xsaKVS1FsrlFqa46n5UsgA=", + "output": "tee", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tee" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tee" + } + }, + "tee": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tee//:tee", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tee" + } + }, + "ape-test": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-rAM1etW/Sh6QiwIEKYJ8wTeMdGrS7JXlZLxvN3WOpJY=", + "output": "test", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/test" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-test" + } + }, + "test": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-test//:test", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~test" + } + }, + "ape-tidy": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ino0vYiVbVN3iWPg2QkkAhkt0/6rpQV4gByQOy8Anko=", + "output": "tidy", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tidy" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tidy" + } + }, + "tidy": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tidy//:tidy", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tidy" + } + }, + "ape-timeout": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-I2cheet197QEuPUUm/vwFd3aa2kbpjS74lWkRPnB4nM=", + "output": "timeout", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/timeout" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-timeout" + } + }, + "timeout": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-timeout//:timeout", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~timeout" + } + }, + "ape-tmux": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YXa8jhJI9onfgaqZBSibiqhTVmrV0m8nVABlX4y2Rq0=", + "output": "tmux", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tmux" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tmux" + } + }, + "tmux": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tmux//:tmux", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tmux" + } + }, + "ape-touch": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IbTnhZPtsp0MVR5YMbPbydQoZW4fdkK+zpLUWzniLMs=", + "output": "touch", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/touch" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-touch" + } + }, + "touch": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-touch//:touch", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~touch" + } + }, + "ape-tr": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2dRx5qpg0gK54dSSIvLX65hXsSDSf0aqSVEqOteJbmU=", + "output": "tr", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tr" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tr" + } + }, + "tr": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tr//:tr", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tr" + } + }, + "ape-tree": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9PrlksnmQKYdCrRGnBbXBvqLbPj8ZQmi8XTlHyzZSMw=", + "output": "tree", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tree" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tree" + } + }, + "tree": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tree//:tree", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tree" + } + }, + "ape-true": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0orWjDT8OYyB4P9bP1I885n9nxVuxncEN5Jz8a+EjY0=", + "output": "true", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/true" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-true" + } + }, + "true": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-true//:true", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~true" + } + }, + "ape-truncate": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lZ7H+u2o/i0frr+3SNLX9wl+dt+Z8bcTkq97MAqwTV4=", + "output": "truncate", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/truncate" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-truncate" + } + }, + "truncate": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-truncate//:truncate", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~truncate" + } + }, + "ape-tsort": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-VDUxR7n3G2EfoF4WDYWypppVfzXI+kupo6yreBTWq+c=", + "output": "tsort", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tsort" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tsort" + } + }, + "tsort": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tsort//:tsort", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tsort" + } + }, + "ape-tty": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3vpXXw5VFHre/OzD+2SOgcS9fvIF4880J1HRtAlFW8c=", + "output": "tty", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/tty" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tty" + } + }, + "tty": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-tty//:tty", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~tty" + } + }, + "ape-ttyinfo": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yQ5SZpbLi6dGTjNoF8K9FH3Jfn6DXGiCzEpXcgP1pSM=", + "output": "ttyinfo", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/ttyinfo" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ttyinfo" + } + }, + "ttyinfo": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-ttyinfo//:ttyinfo", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ttyinfo" + } + }, + "ape-uname": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-g/jLlpJ5JddFUPl9wf9mfxWMNByF3GBPwWlY48Hj+7M=", + "output": "uname", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uname" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uname" + } + }, + "uname": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uname//:uname", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uname" + } + }, + "ape-unbourne": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ikUALyvGuCHeyvfBrEz89EWJmOJ59X7hq9CWjniSBo8=", + "output": "unbourne", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unbourne" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unbourne" + } + }, + "unbourne": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unbourne//:unbourne", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unbourne" + } + }, + "ape-unexpand": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8Uqi4z/f8vxXRK1QfUohl8MS6bIblMaM7S4VNInJhCA=", + "output": "unexpand", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unexpand" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unexpand" + } + }, + "unexpand": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unexpand//:unexpand", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unexpand" + } + }, + "ape-uniq": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-iTTpfc9j+4f7t0pNGpYBDQJJqlA5BkbCsMypqw+4sRg=", + "output": "uniq", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uniq" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uniq" + } + }, + "uniq": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uniq//:uniq", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uniq" + } + }, + "ape-unlink": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-AYKajItQtnhxAVM7rUEWIdXvlfaWdxW2nu9TwEE620I=", + "output": "unlink", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unlink" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unlink" + } + }, + "unlink": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unlink//:unlink", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unlink" + } + }, + "ape-unzip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2b+SjxqjLjWICHM3ywRWizKE/GeLB5YS57dPcvAcCRM=", + "output": "unzip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/unzip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unzip" + } + }, + "unzip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-unzip//:unzip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~unzip" + } + }, + "ape-uptime": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Q8evVkg9AHD4/FMbxC73dGtk68EX2hfqr1L1wpW23Nk=", + "output": "uptime", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/uptime" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uptime" + } + }, + "uptime": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-uptime//:uptime", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~uptime" + } + }, + "ape-users": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-OzImZcJCLPzMoIBtE2P/uBXoS884jIDN3Qd2BefIpEw=", + "output": "users", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/users" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-users" + } + }, + "users": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-users//:users", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~users" + } + }, + "ape-vdir": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YttpdAkioTnB4ZjUreWdTj64q/JJbiej6FtlXJdyTHo=", + "output": "vdir", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vdir" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vdir" + } + }, + "vdir": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vdir//:vdir", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~vdir" + } + }, + "ape-verynice": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CQl0ivmr2M1hlgsUvgNyJdhgkvGIRtWmMlQQPcqnA1Q=", + "output": "verynice", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/verynice" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-verynice" + } + }, + "verynice": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-verynice//:verynice", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~verynice" + } + }, + "ape-vim": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/OlvTtKd5YlPwR3487Irjd2co6OKVSKartQt5jYDr14=", + "output": "vim", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/vim" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vim" + } + }, + "vim": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-vim//:vim", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~vim" + } + }, + "ape-wall": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pLoNAlndoLNqVyoU4ocKOAWFe6SbVaJJ5gOgo1WFoPY=", + "output": "wall", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wall" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wall" + } + }, + "wall": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wall//:wall", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wall" + } + }, + "ape-wc": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ImV3TUOpfKBK6dCLx9Yhkagrid09Nf/IKqA8M5tDGLs=", + "output": "wc", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wc" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wc" + } + }, + "wc": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wc//:wc", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wc" + } + }, + "ape-wget": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EZzyls0b1JQuebKgxkLUeZU//Ej2tycTGg3tMdz5xC4=", + "output": "wget", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/wget" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wget" + } + }, + "wget": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-wget//:wget", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~wget" + } + }, + "ape-who": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MDWT8l0+L3alJRru65AVSGnWfnxzWEfg0QwEzqcQkLQ=", + "output": "who", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/who" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-who" + } + }, + "who": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-who//:who", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~who" + } + }, + "ape-whoami": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KKSva/mAjJ3WEYH+eh3dXGC0PRtRlGGyOqh0+PV1smI=", + "output": "whoami", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/whoami" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-whoami" + } + }, + "whoami": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-whoami//:whoami", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~whoami" + } + }, + "ape-xargs": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/X84kHdTUhXoLwRoI/iABxuxkCB2EtL6m3G8FCFWjc0=", + "output": "xargs", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xargs" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xargs" + } + }, + "xargs": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xargs//:xargs", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~xargs" + } + }, + "ape-xz": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oESVTQvf+W+G6zGqVmWeSsgb44OSQ7ysXCNSs7CGP8c=", + "output": "xz", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/xz" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xz" + } + }, + "xz": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-xz//:xz", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~xz" + } + }, + "ape-yes": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Rk6FrLhfWozo179cbfow2cNJ8BcdQC0+w9BGgV63L+M=", + "output": "yes", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/yes" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-yes" + } + }, + "yes": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-yes//:yes", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~yes" + } + }, + "ape-zip": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hg8DAtRHtxwaEXf5MNuwxONdu3ZWubig70bQUfGPhYQ=", + "output": "zip", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zip" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zip" + } + }, + "zip": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zip//:zip", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zip" + } + }, + "ape-zsh": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uNvl/ZI6RA8s1Flnlq+J3YzrZh+UYegCpuJ+ZBFMZyA=", + "output": "zsh", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zsh" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zsh" + } + }, + "zsh": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zsh//:zsh", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zsh" + } + }, + "ape-zstd": { + "bzlFile": "@@rules_download~1.0.0-alpha.5//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gaJEudIltpcHEj9z1WjxxdDXpNHeGj0q1EiYNoCymzg=", + "output": "zstd", + "urls": [ + "https://cosmo.zip/pub/cosmos/v/3.1.3/bin/zstd" + ], + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zstd" + } + }, + "zstd": { + "bzlFile": "@@rules_cosmos~1.0.0-alpha.1//cosmos/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ape-zstd//:zstd", + "name": "rules_cosmos~1.0.0-alpha.1~_repo_rules~zstd" + } + } + } + } + }, + "@@rules_curl~override//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "RJvmtBrBT2icKDT13BvlBXW3Mz9phv160hnsBqQGQEo=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "resolved-curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/resolved:repository.bzl", + "ruleClassName": "resolved", + "attributes": { + "toolchain_type": "@@rules_curl~override//curl/toolchain/cli:type", + "name": "rules_curl~override~_repo_rules~resolved-curl" + } + } + } + } + }, + "@@rules_java~7.1.0//java:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "remotejdk21_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" + ] + } + }, + "remote_java_tools_windows": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows", + "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip" + ] + } + }, + "remotejdk11_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" + ] + } + }, + "remotejdk11_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" + } + }, + "remotejdk11_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" + ] + } + }, + "remotejdk11_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", + "strip_prefix": "jdk-11.0.13+8", + "urls": [ + "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" + ] + } + }, + "remotejdk17_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" + ] + } + }, + "remotejdk11_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk21_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz" + ] + } + }, + "remote_java_tools_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux", + "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip" + ] + } + }, + "remotejdk21_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip" + ] + } + }, + "remotejdk21_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk11_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk17_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk17_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" + ] + } + }, + "remote_java_tools_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64", + "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip" + ] + } + }, + "remotejdk17_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk21_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" + } + }, + "local_jdk": { + "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl", + "ruleClassName": "_local_java_repository_rule", + "attributes": { + "name": "rules_java~7.1.0~toolchains~local_jdk", + "java_home": "", + "version": "", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" + } + }, + "remote_java_tools_darwin_x86_64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64", + "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip" + ] + } + }, + "remote_java_tools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools", + "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip" + ] + } + }, + "remotejdk17_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk17_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk11_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk21_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" + } + } + } + } + }, + "@@rules_toolchain~1.0.0-alpha.13//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "qXc+t+XkxFhCAlOIhCr8I+ndLztHFOWGoNs6UXtP95k=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/local/triplet:repository.bzl", + "ruleClassName": "triplet", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~_repo_rules~local" + } + }, + "launcher": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/launcher:repository.bzl", + "ruleClassName": "launcher", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~_repo_rules~launcher" + } + } + } + } + }, + "@@rules_toolchain~1.0.0-alpha.13//toolchain/export:defs.bzl%toolchain_export": { + "general": { + "bzlTransitiveDigest": "BzNop8Xd2QfFtwy+F4thyq9O+CpaFjHeMWKDF15GMaM=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "cosmos-head": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-head", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~head//:head" + } + }, + "cosmos-clang-format": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-clang-format", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~clang-format//:clang-format" + } + }, + "curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~curl", + "target": "@@rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-curl//:cosmos-curl" + } + }, + "cosmos-unexpand": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unexpand", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unexpand//:unexpand" + } + }, + "cosmos-sha384sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha384sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha384sum//:sha384sum" + } + }, + "cosmos-cut": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cut", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cut//:cut" + } + }, + "cosmos-datasette": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-datasette", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~datasette//:datasette" + } + }, + "cosmos-mknod": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mknod", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mknod//:mknod" + } + }, + "cosmos-pwd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pwd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pwd//:pwd" + } + }, + "cosmos-numfmt": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-numfmt", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~numfmt//:numfmt" + } + }, + "cosmos-chroot": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chroot", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chroot//:chroot" + } + }, + "cosmos-make": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-make", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~make//:make" + } + }, + "cosmos-link": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-link", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~link//:link" + } + }, + "cosmos-expr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-expr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~expr//:expr" + } + }, + "cosmos-life": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-life", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~life//:life" + } + }, + "cosmos-emacs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-emacs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~emacs//:emacs" + } + }, + "cosmos-paste": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-paste", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~paste//:paste" + } + }, + "cosmos-python": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-python", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~python//:python" + } + }, + "cosmos-timeout": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-timeout", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~timeout//:timeout" + } + }, + "cosmos-dircolors": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dircolors", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dircolors//:dircolors" + } + }, + "cosmos-wall": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wall", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wall//:wall" + } + }, + "cosmos-tidy": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tidy", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tidy//:tidy" + } + }, + "cosmos-cp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cp//:cp" + } + }, + "cosmos-nohup": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nohup", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nohup//:nohup" + } + }, + "cosmos-llama": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-llama", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~llama//:llama" + } + }, + "cosmos-seq": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-seq", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~seq//:seq" + } + }, + "cosmos-sleep": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sleep", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sleep//:sleep" + } + }, + "cosmos-script": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-script", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~script//:script" + } + }, + "cosmos-ninja": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ninja", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ninja//:ninja" + } + }, + "cosmos-base32": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-base32", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~base32//:base32" + } + }, + "cosmos-runcon": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-runcon", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~runcon//:runcon" + } + }, + "cosmos-bash": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-bash", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~bash//:bash" + } + }, + "cosmos-tmux": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tmux", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tmux//:tmux" + } + }, + "cosmos-sed": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sed", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sed//:sed" + } + }, + "cosmos-zsh": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zsh", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zsh//:zsh" + } + }, + "cosmos-grep": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-grep", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~grep//:grep" + } + }, + "cosmos-basename": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-basename", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~basename//:basename" + } + }, + "cosmos-sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sum//:sum" + } + }, + "cosmos-qjs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-qjs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~qjs//:qjs" + } + }, + "cosmos-bzip2": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-bzip2", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~bzip2//:bzip2" + } + }, + "cosmos-nesemu1": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nesemu1", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nesemu1//:nesemu1" + } + }, + "cosmos-echo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-echo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~echo//:echo" + } + }, + "cosmos-id": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-id", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~id//:id" + } + }, + "cosmos-join": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-join", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~join//:join" + } + }, + "cosmos-curl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-curl", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~curl//:curl" + } + }, + "cosmos-printenv": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printenv", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printenv//:printenv" + } + }, + "cosmos-pinky": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pinky", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pinky//:pinky" + } + }, + "cosmos-pr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pr//:pr" + } + }, + "cosmos-xz": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-xz", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~xz//:xz" + } + }, + "cosmos-sqlite3": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sqlite3", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sqlite3//:sqlite3" + } + }, + "cosmos-rmdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rmdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rmdir//:rmdir" + } + }, + "cosmos-chmod": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chmod", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chmod//:chmod" + } + }, + "cosmos-mktemper": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mktemper", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemper//:mktemper" + } + }, + "cosmos-false": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-false", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~false//:false" + } + }, + "cosmos-verynice": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-verynice", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~verynice//:verynice" + } + }, + "cosmos-redbean": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-redbean", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~redbean//:redbean" + } + }, + "cosmos-install": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-install", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~install//:install" + } + }, + "cosmos-fold": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-fold", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~fold//:fold" + } + }, + "cosmos-tac": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tac", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tac//:tac" + } + }, + "cosmos-uname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uname//:uname" + } + }, + "cosmos-rm": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rm", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rm//:rm" + } + }, + "cosmos-mktemp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mktemp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mktemp//:mktemp" + } + }, + "cosmos-sha512sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha512sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha512sum//:sha512sum" + } + }, + "cosmos-xargs": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-xargs", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~xargs//:xargs" + } + }, + "cosmos-comm": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-comm", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~comm//:comm" + } + }, + "cosmos-dirname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dirname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dirname//:dirname" + } + }, + "cosmos-nproc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nproc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nproc//:nproc" + } + }, + "cosmos-logname": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-logname", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~logname//:logname" + } + }, + "cosmos-realpath": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-realpath", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~realpath//:realpath" + } + }, + "cosmos-mkfifo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mkfifo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mkfifo//:mkfifo" + } + }, + "cosmos-pathchk": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pathchk", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pathchk//:pathchk" + } + }, + "cosmos-dir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dir//:dir" + } + }, + "cosmos-fmt": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-fmt", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~fmt//:fmt" + } + }, + "cosmos-pledge": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pledge", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pledge//:pledge" + } + }, + "cosmos-kill": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-kill", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~kill//:kill" + } + }, + "cosmos-nice": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nice", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nice//:nice" + } + }, + "cosmos-chgrp": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chgrp", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chgrp//:chgrp" + } + }, + "cosmos-zstd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zstd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zstd//:zstd" + } + }, + "cosmos-ttyinfo": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ttyinfo", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ttyinfo//:ttyinfo" + } + }, + "cosmos-md5sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-md5sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~md5sum//:md5sum" + } + }, + "cosmos-b2sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-b2sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~b2sum//:b2sum" + } + }, + "cosmos-greenbean": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-greenbean", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~greenbean//:greenbean" + } + }, + "cosmos-truncate": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-truncate", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~truncate//:truncate" + } + }, + "cosmos-basenc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-basenc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~basenc//:basenc" + } + }, + "cosmos-sha256sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha256sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha256sum//:sha256sum" + } + }, + "cosmos-who": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-who", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~who//:who" + } + }, + "cosmos-od": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-od", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~od//:od" + } + }, + "cosmos-base64": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-base64", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~base64//:base64" + } + }, + "cosmos-nl": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nl", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nl//:nl" + } + }, + "cosmos-emacsclient": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-emacsclient", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~emacsclient//:emacsclient" + } + }, + "cosmos-tar": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tar", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tar//:tar" + } + }, + "cosmos-wc": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wc", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wc//:wc" + } + }, + "cosmos-cat": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cat", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cat//:cat" + } + }, + "cosmos-touch": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-touch", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~touch//:touch" + } + }, + "cosmos-vdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-vdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~vdir//:vdir" + } + }, + "cosmos-expand": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-expand", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~expand//:expand" + } + }, + "cosmos-tail": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tail", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tail//:tail" + } + }, + "cosmos-gzip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-gzip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~gzip//:gzip" + } + }, + "cosmos-stat": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-stat", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~stat//:stat" + } + }, + "cosmos-whoami": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-whoami", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~whoami//:whoami" + } + }, + "cosmos-locate": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-locate", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~locate//:locate" + } + }, + "cosmos-lua": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-lua", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~lua//:lua" + } + }, + "cosmos-tsort": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tsort", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tsort//:tsort" + } + }, + "cosmos-brotli": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-brotli", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~brotli//:brotli" + } + }, + "cosmos-factor": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-factor", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~factor//:factor" + } + }, + "cosmos-printimage": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printimage", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printimage//:printimage" + } + }, + "cosmos-shuf": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-shuf", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~shuf//:shuf" + } + }, + "cosmos-stty": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-stty", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~stty//:stty" + } + }, + "cosmos-du": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-du", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~du//:du" + } + }, + "cosmos-sha1sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha1sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha1sum//:sha1sum" + } + }, + "cosmos-tty": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tty", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tty//:tty" + } + }, + "cosmos-mkdir": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mkdir", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mkdir//:mkdir" + } + }, + "cosmos-ptx": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ptx", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ptx//:ptx" + } + }, + "cosmos-awk": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-awk", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~awk//:awk" + } + }, + "cosmos-gmake": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-gmake", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~gmake//:gmake" + } + }, + "cosmos-pigz": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-pigz", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~pigz//:pigz" + } + }, + "cosmos-sort": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sort", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sort//:sort" + } + }, + "cosmos-tree": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tree", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tree//:tree" + } + }, + "cosmos-printf": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-printf", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~printf//:printf" + } + }, + "cosmos-date": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-date", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~date//:date" + } + }, + "cosmos-hello": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-hello", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~hello//:hello" + } + }, + "cosmos-df": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-df", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~df//:df" + } + }, + "cosmos-ln": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ln", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ln//:ln" + } + }, + "cosmos-nano": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-nano", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~nano//:nano" + } + }, + "cosmos-yes": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-yes", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~yes//:yes" + } + }, + "cosmos-dd": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dd", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dd//:dd" + } + }, + "cosmos-readlink": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-readlink", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~readlink//:readlink" + } + }, + "cosmos-tr": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tr", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tr//:tr" + } + }, + "cosmos-berry": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-berry", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~berry//:berry" + } + }, + "cosmos-users": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-users", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~users//:users" + } + }, + "cosmos-ls": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ls", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ls//:ls" + } + }, + "cosmos-find": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-find", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~find//:find" + } + }, + "cosmos-env": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-env", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~env//:env" + } + }, + "cosmos-chcon": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chcon", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chcon//:chcon" + } + }, + "cosmos-csplit": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-csplit", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~csplit//:csplit" + } + }, + "cosmos-vim": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-vim", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~vim//:vim" + } + }, + "cosmos-sha224sum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sha224sum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sha224sum//:sha224sum" + } + }, + "cosmos-chown": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-chown", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~chown//:chown" + } + }, + "cosmos-tee": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-tee", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~tee//:tee" + } + }, + "cosmos-shred": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-shred", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~shred//:shred" + } + }, + "cosmos-ctags": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-ctags", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~ctags//:ctags" + } + }, + "cosmos-split": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-split", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~split//:split" + } + }, + "cosmos-zip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-zip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~zip//:zip" + } + }, + "cosmos-groups": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-groups", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~groups//:groups" + } + }, + "cosmos-unbourne": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unbourne", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unbourne//:unbourne" + } + }, + "cosmos-wget": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-wget", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~wget//:wget" + } + }, + "cosmos-uniq": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uniq", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uniq//:uniq" + } + }, + "cosmos-uptime": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-uptime", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~uptime//:uptime" + } + }, + "cosmos-unlink": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unlink", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unlink//:unlink" + } + }, + "cosmos-dash": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-dash", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~dash//:dash" + } + }, + "cosmos-sync": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-sync", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~sync//:sync" + } + }, + "cosmos-less": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-less", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~less//:less" + } + }, + "cosmos-rsync": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-rsync", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~rsync//:rsync" + } + }, + "cosmos-true": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-true", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~true//:true" + } + }, + "cosmos-mv": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-mv", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~mv//:mv" + } + }, + "cosmos-cksum": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-cksum", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~cksum//:cksum" + } + }, + "cosmos-test": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-test", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~test//:test" + } + }, + "cosmos-unzip": { + "bzlFile": "@@rules_toolchain~1.0.0-alpha.13//toolchain/export/symlink:repository.bzl", + "ruleClassName": "symlink", + "attributes": { + "name": "rules_toolchain~1.0.0-alpha.13~toolchain_export~cosmos-unzip", + "target": "@@rules_cosmos~1.0.0-alpha.1~_repo_rules~unzip//:unzip" + } + } + } + } + } + } } diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2e0c713f69fa5c7d0fbc0648067c3d811f4dcaf --- /dev/null +++ b/icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..16577d8ba147549b4aae4ad2809f63e0c75183fe --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6993 @@ +{ + "name": "rules_download", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@bazel/bazelisk": "^1", + "@semantic-release/bzlmod": "^1", + "@semantic-release/changelog": "^6", + "@semantic-release/commit-analyzer": "^11", + "@semantic-release/config-gitlab-bzlmod": "^1", + "@semantic-release/config-release-channels": "^1", + "@semantic-release/error": "^4", + "@semantic-release/exec": "^6", + "@semantic-release/git": "^10", + "@semantic-release/gitlab": "^12.1", + "@semantic-release/release-notes-generator": "^12", + "debug": "^4", + "semantic-release": "^22" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bazel/bazelisk": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@bazel/bazelisk/-/bazelisk-1.19.0.tgz", + "integrity": "sha512-8PyRGRj/CN286IFHVILgYZ2lQ/JvgQ25ZEgoUAkpSnGmbPdQnKyHtTGEG+Sf0AISFqP5+PPzN162DcizZ/bR9w==", + "dev": true, + "bin": { + "bazel": "bazelisk.js", + "bazelisk": "bazelisk.js" + } + }, + "node_modules/@bazel/buildozer": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@bazel/buildozer/-/buildozer-6.4.0.tgz", + "integrity": "sha512-v4/R4JXSsQs9DGJfdqfXdVVv9t+fPfkpUmwEYZhoWfb9v69l7tyWRfXU1F5eWjHL6BMZ3phPEHjzrGOIhfe7gg==", + "dev": true, + "bin": { + "buildozer": "buildozer.js" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "dev": true, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", + "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", + "dev": true, + "dependencies": { + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.0.0", + "@octokit/request": "^8.0.2", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", + "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", + "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", + "dev": true, + "dependencies": { + "@octokit/request": "^8.0.1", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", + "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", + "dev": true + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", + "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.4.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=5" + } + }, + "node_modules/@octokit/plugin-retry": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", + "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", + "dev": true, + "dependencies": { + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=5" + } + }, + "node_modules/@octokit/plugin-throttling": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", + "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.2.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^5.0.0" + } + }, + "node_modules/@octokit/request": { + "version": "8.1.6", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", + "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", + "dev": true, + "dependencies": { + "@octokit/endpoint": "^9.0.0", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", + "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", + "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^19.1.0" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "dev": true, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dev": true, + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", + "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", + "dev": true, + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@semantic-release/bzlmod": { + "version": "1.2.3", + "resolved": "https://gitlab.arm.com/api/v4/projects/411/packages/npm/@semantic-release/bzlmod/-/@semantic-release/bzlmod-1.2.3.tgz", + "integrity": "sha1-tC2H0rSHlsvuiZpt0ruKN1JuDx0=", + "dev": true, + "dependencies": { + "@bazel/buildozer": "^6", + "@semantic-release/error": "^3 || ^4", + "debug": "^4", + "execa": "^8||^7||^6", + "lodash-es": "^4", + "ssri": "^10||^9" + }, + "peerDependencies": { + "semantic-release": ">=19" + } + }, + "node_modules/@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/changelog/node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@semantic-release/commit-analyzer": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", + "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", + "dev": true, + "dependencies": { + "conventional-changelog-angular": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "import-from-esm": "^1.0.3", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/config-gitlab-bzlmod": { + "version": "1.1.6", + "resolved": "https://gitlab.arm.com/api/v4/projects/412/packages/npm/@semantic-release/config-gitlab-bzlmod/-/@semantic-release/config-gitlab-bzlmod-1.1.6.tgz", + "integrity": "sha1-gYcvQ0vp5aRTVpIQJSX4KfhkdFc=", + "dev": true, + "peerDependencies": { + "@semantic-release/bzlmod": ">=1.1", + "@semantic-release/changelog": ">=4", + "@semantic-release/commit-analyzer": ">=9", + "@semantic-release/exec": ">=4", + "@semantic-release/git": ">=8", + "@semantic-release/gitlab": ">=12.1", + "@semantic-release/release-notes-generator": ">=10", + "prettier": ">=2", + "semantic-release": ">=19" + } + }, + "node_modules/@semantic-release/config-release-channels": { + "version": "1.0.4", + "resolved": "https://gitlab.arm.com/api/v4/projects/405/packages/npm/@semantic-release/config-release-channels/-/@semantic-release/config-release-channels-1.0.4.tgz", + "integrity": "sha1-CoHLmMNjTGEn5Cftrsm14YKEdAs=", + "dev": true, + "peerDependencies": { + "semantic-release": ">=19" + } + }, + "node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/exec": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", + "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "parse-json": "^5.0.0" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/exec/node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@semantic-release/exec/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@semantic-release/exec/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/exec/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@semantic-release/exec/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/exec/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@semantic-release/exec/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@semantic-release/exec/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/exec/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/@semantic-release/exec/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/git/node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@semantic-release/git/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@semantic-release/git/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/git/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@semantic-release/git/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/git/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@semantic-release/git/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@semantic-release/git/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/git/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/@semantic-release/git/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@semantic-release/github": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", + "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", + "dev": true, + "dependencies": { + "@octokit/core": "^5.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", + "@octokit/plugin-retry": "^6.0.0", + "@octokit/plugin-throttling": "^8.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^6.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^3.0.0", + "url-join": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/github/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/url-join": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", + "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/@semantic-release/gitlab": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@semantic-release/gitlab/-/gitlab-12.1.1.tgz", + "integrity": "sha512-vM8mqMmegRJB4+9MJCYeCt5Gn4C2rpF0bNOzKOHq1IaI4FleIV5sss0fn55jVCuVVztTnoPQylnti5Tkdg3uaw==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "form-data": "^4.0.0", + "fs-extra": "^11.0.0", + "globby": "^14.0.0", + "got": "^13.0.0", + "hpagent": "^1.0.0", + "lodash-es": "^4.17.21", + "parse-url": "^8.0.0", + "url-join": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/gitlab/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/gitlab/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/gitlab/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", + "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^8.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.0.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, + "engines": { + "node": "^18.17 || >=20" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/npm/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/release-notes-generator": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", + "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", + "dev": true, + "dependencies": { + "conventional-changelog-angular": "^7.0.0", + "conventional-changelog-writer": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^1.0.3", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-pkg-up": "^11.0.0" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-escapes": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", + "dev": true, + "dependencies": { + "type-fest": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansicolors": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", + "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/argv-formatter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", + "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", + "dev": true + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "node_modules/bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", + "dev": true + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "dev": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "dev": true, + "dependencies": { + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cardinal": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", + "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", + "dev": true, + "dependencies": { + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" + }, + "bin": { + "cdl": "bin/cdl.js" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/conventional-changelog-angular": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/conventional-changelog-writer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", + "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", + "dev": true, + "dependencies": { + "conventional-commits-filter": "^4.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "meow": "^12.0.1", + "semver": "^7.5.2", + "split2": "^4.0.0" + }, + "bin": { + "conventional-changelog-writer": "cli.mjs" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/conventional-commits-filter": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", + "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/conventional-commits-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", + "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", + "dev": true, + "dependencies": { + "is-text-path": "^2.0.0", + "JSONStream": "^1.3.5", + "meow": "^12.0.1", + "split2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.mjs" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "dev": true + }, + "node_modules/env-ci": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", + "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", + "dev": true, + "dependencies": { + "execa": "^8.0.0", + "java-properties": "^1.0.2" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/figures": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", + "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", + "dev": true, + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/find-up-simple": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", + "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-versions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", + "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", + "dev": true, + "dependencies": { + "semver-regex": "^4.0.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "dev": true, + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-log-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", + "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", + "dev": true, + "dependencies": { + "argv-formatter": "~1.0.0", + "spawn-error-forwarder": "~1.0.0", + "split2": "~1.0.0", + "stream-combiner2": "~1.1.1", + "through2": "~2.0.0", + "traverse": "~0.6.6" + } + }, + "node_modules/git-log-parser/node_modules/split2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", + "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", + "dev": true, + "dependencies": { + "through2": "~2.0.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globby": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/got": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", + "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hook-std": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", + "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/hpagent": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", + "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "dev": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from-esm": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", + "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "import-meta-resolve": "^4.0.0" + }, + "engines": { + "node": ">=16.20" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/index-to-position": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", + "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/into-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", + "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", + "dev": true, + "dependencies": { + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-text-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", + "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", + "dev": true, + "dependencies": { + "text-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-unicode-supported": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/issue-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", + "dev": true, + "dependencies": { + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": ">=10.13" + } + }, + "node_modules/java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "dev": true + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "dev": true + }, + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "dev": true + }, + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/marked": { + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", + "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", + "dev": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 16" + } + }, + "node_modules/marked-terminal": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.1.0.tgz", + "integrity": "sha512-QaCSF6NV82oo6K0szEnmc65ooDeW0T/Adcyf0fcW+Hto2GT1VADFg8dn1zaeHqzj65fqDH1hMNChGNRaC/lbkA==", + "dev": true, + "dependencies": { + "ansi-escapes": "^6.2.0", + "cardinal": "^2.1.1", + "chalk": "^5.3.0", + "cli-table3": "^0.6.3", + "node-emoji": "^2.1.0", + "supports-hyperlinks": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "marked": ">=1 <11" + } + }, + "node_modules/marked-terminal/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/meow": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", + "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", + "dev": true, + "engines": { + "node": ">=16.10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.0.tgz", + "integrity": "sha512-pzhgdeqU5pJ9t5WK9m4RT4GgGWqYJylxUf62Yb9datXRwdcw5MjiD1BYI5evF8AgTXN9gtKX3CFLvCUL5fAhEA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa" + ], + "bin": { + "mime": "bin/cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nerf-dart": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", + "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", + "dev": true + }, + "node_modules/node-emoji": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/node-emoji/node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "dev": true, + "dependencies": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/normalize-url": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", + "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", + "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/promise-spawn", + "@npmcli/run-script", + "@sigstore/tuf", + "abbrev", + "archy", + "cacache", + "chalk", + "ci-info", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "fs-minipass", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minimatch", + "minipass", + "minipass-pipeline", + "ms", + "node-gyp", + "nopt", + "normalize-package-data", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "p-map", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "semver", + "spdx-expression-parse", + "ssri", + "strip-ansi", + "supports-color", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], + "dev": true, + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^7.2.1", + "@npmcli/config": "^8.0.2", + "@npmcli/fs": "^3.1.0", + "@npmcli/map-workspaces": "^3.0.4", + "@npmcli/package-json": "^5.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.2", + "@sigstore/tuf": "^2.2.0", + "abbrev": "^2.0.0", + "archy": "~1.0.0", + "cacache": "^18.0.1", + "chalk": "^5.3.0", + "ci-info": "^4.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.3", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.16", + "fs-minipass": "^3.0.3", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "hosted-git-info": "^7.0.1", + "ini": "^4.1.1", + "init-package-json": "^6.0.0", + "is-cidr": "^5.0.3", + "json-parse-even-better-errors": "^3.0.1", + "libnpmaccess": "^8.0.1", + "libnpmdiff": "^6.0.3", + "libnpmexec": "^7.0.4", + "libnpmfund": "^5.0.1", + "libnpmhook": "^10.0.0", + "libnpmorg": "^6.0.1", + "libnpmpack": "^6.0.3", + "libnpmpublish": "^9.0.2", + "libnpmsearch": "^7.0.0", + "libnpmteam": "^6.0.0", + "libnpmversion": "^5.0.1", + "make-fetch-happen": "^13.0.0", + "minimatch": "^9.0.3", + "minipass": "^7.0.4", + "minipass-pipeline": "^1.2.4", + "ms": "^2.1.2", + "node-gyp": "^10.0.1", + "nopt": "^7.2.0", + "normalize-package-data": "^6.0.0", + "npm-audit-report": "^5.0.0", + "npm-install-checks": "^6.3.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-profile": "^9.0.0", + "npm-registry-fetch": "^16.1.0", + "npm-user-validate": "^2.0.0", + "npmlog": "^7.0.1", + "p-map": "^4.0.0", + "pacote": "^17.0.5", + "parse-conflict-json": "^3.0.1", + "proc-log": "^3.0.0", + "qrcode-terminal": "^0.12.0", + "read": "^2.1.0", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1", + "ssri": "^10.0.5", + "strip-ansi": "^7.1.0", + "supports-color": "^9.4.0", + "tar": "^6.2.0", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^3.0.0", + "validate-npm-package-name": "^5.0.0", + "which": "^4.0.0", + "write-file-atomic": "^5.0.1" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/@colors/colors": { + "version": "1.5.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/agent": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "7.2.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^3.1.0", + "@npmcli/installed-package-contents": "^2.0.2", + "@npmcli/map-workspaces": "^3.0.2", + "@npmcli/metavuln-calculator": "^7.0.0", + "@npmcli/name-from-folder": "^2.0.0", + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", + "@npmcli/query": "^3.0.1", + "@npmcli/run-script": "^7.0.2", + "bin-links": "^4.0.1", + "cacache": "^18.0.0", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^7.0.1", + "json-parse-even-better-errors": "^3.0.0", + "json-stringify-nice": "^1.1.4", + "minimatch": "^9.0.0", + "nopt": "^7.0.0", + "npm-install-checks": "^6.2.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "parse-conflict-json": "^3.0.0", + "proc-log": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.2", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^10.0.5", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/config": { + "version": "8.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/map-workspaces": "^3.0.2", + "ci-info": "^4.0.0", + "ini": "^4.1.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "ansi-styles": "^4.3.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "3.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/git": { + "version": "5.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "bin": { + "installed-package-contents": "lib/index.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "3.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0", + "read-package-json-fast": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cacache": "^18.0.0", + "json-parse-even-better-errors": "^3.0.0", + "pacote": "^17.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/query": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/@sigstore/bundle": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@sigstore/sign": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@sigstore/tuf": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@tufjs/canonical-json": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@tufjs/models": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/abbrev": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/abort-controller": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/npm/node_modules/agent-base": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ansi-regex": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/npm/node_modules/ansi-styles": { + "version": "6.2.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "4.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^4.1.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/base64-js": { + "version": "1.5.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/bin-links": { + "version": "4.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cmd-shim": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "read-cmd-shim": "^4.0.0", + "write-file-atomic": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm/node_modules/buffer": { + "version": "6.0.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/npm/node_modules/builtins": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/npm/node_modules/cacache": { + "version": "18.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/chalk": { + "version": "5.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ci-info": { + "version": "4.0.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cidr-regex": { + "version": "4.0.3", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "ip-regex": "^5.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/cli-columns": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/npm/node_modules/columnify": { + "version": "1.6.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/cross-spawn": { + "version": "7.0.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/cssesc": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/debug": { + "version": "4.3.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/defaults": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/delegates": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/diff": { + "version": "5.1.0", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/npm/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/event-target-shim": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/events": { + "version": "3.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/npm/node_modules/exponential-backoff": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/npm/node_modules/foreground-child": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "3.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/npm/node_modules/gauge": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/glob": { + "version": "10.3.10", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.11", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hasown": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "7.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.1", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "BSD-3-Clause" + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "6.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ini": { + "version": "4.1.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/init-package-json": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^11.0.0", + "promzard": "^1.0.0", + "read": "^2.0.0", + "read-package-json": "^7.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/ip": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/is-cidr": { + "version": "5.0.3", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "cidr-regex": "4.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/is-core-module": { + "version": "2.13.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/jackspeak": { + "version": "2.3.6", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.5.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmdiff": { + "version": "6.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/disparity-colors": "^3.0.0", + "@npmcli/installed-package-contents": "^2.0.2", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^9.0.0", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4", + "tar": "^6.2.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmexec": { + "version": "7.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "ci-info": "^4.0.0", + "npm-package-arg": "^11.0.1", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "proc-log": "^3.0.0", + "read": "^2.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "walk-up-path": "^3.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmfund": { + "version": "5.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^7.2.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmhook": { + "version": "10.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmorg": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmpack": { + "version": "6.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmpublish": { + "version": "9.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "ci-info": "^4.0.0", + "normalize-package-data": "^6.0.0", + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7", + "sigstore": "^2.1.0", + "ssri": "^10.0.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmsearch": { + "version": "7.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmteam": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmversion": { + "version": "5.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^5.0.3", + "@npmcli/run-script": "^7.0.2", + "json-parse-even-better-errors": "^3.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/lru-cache": { + "version": "10.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "13.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/minimatch": { + "version": "9.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/minipass": { + "version": "7.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/npm/node_modules/minipass-collect": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/npm/node_modules/minipass-fetch": { + "version": "3.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/mute-stream": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/node-gyp": { + "version": "10.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/nopt": { + "version": "7.2.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/normalize-package-data": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-audit-report": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-bundled": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-install-checks": { + "version": "6.3.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-package-arg": { + "version": "11.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-packlist": { + "version": "8.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "ignore-walk": "^6.0.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-profile": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "16.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-user-validate": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npmlog": { + "version": "7.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^4.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^5.0.0", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/pacote": { + "version": "17.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/path-scurry": { + "version": "1.10.1", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/postcss-selector-parser": { + "version": "6.0.13", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/proc-log": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/process": { + "version": "0.11.10", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/promzard": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "read": "^2.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/npm/node_modules/read": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "mute-stream": "~1.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/read-package-json": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "3.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/readable-stream": { + "version": "4.4.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.5.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/sigstore": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks": { + "version": "2.7.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", + "dev": true, + "inBundle": true, + "license": "CC-BY-3.0" + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.16", + "dev": true, + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/ssri": { + "version": "10.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/supports-color": { + "version": "9.4.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/npm/node_modules/tar": { + "version": "6.2.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/treeverse": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/tuf-js": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/unique-filename": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/unique-slug": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "builtins": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/walk-up-path": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/npm/node_modules/which": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/which/node_modules/isexe": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=16" + } + }, + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/npm/node_modules/wrap-ansi": { + "version": "8.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "dev": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/p-each-series": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", + "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", + "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", + "dev": true, + "dependencies": { + "p-map": "^5.1.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-is-promise": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", + "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", + "dev": true, + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map/node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "dev": true, + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map/node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dev": true, + "dependencies": { + "protocols": "^2.0.0" + } + }, + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dev": true, + "dependencies": { + "parse-path": "^7.0.0" + } + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "dev": true, + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "dev": true, + "peer": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true + }, + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", + "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", + "deprecated": "Renamed to read-package-up", + "dev": true, + "dependencies": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg/node_modules/parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/redeyed": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", + "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", + "dev": true, + "dependencies": { + "esprima": "~4.0.0" + } + }, + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", + "dev": true, + "dependencies": { + "@pnpm/npm-conf": "^2.1.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", + "dev": true, + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/semantic-release": { + "version": "22.0.10", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.10.tgz", + "integrity": "sha512-4ahPaOX+0UYpYlosjc/tfCzB/cqlnjN0/xSKGryEC4bOpuYSkoK+QHw7xDPmAuiMNBBvkFD+m3aVMENUr++CIg==", + "dev": true, + "dependencies": { + "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^9.0.0", + "@semantic-release/npm": "^11.0.0", + "@semantic-release/release-notes-generator": "^12.0.0", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^8.0.0", + "debug": "^4.0.0", + "env-ci": "^10.0.0", + "execa": "^8.0.0", + "figures": "^6.0.0", + "find-versions": "^5.1.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^7.0.0", + "import-from-esm": "^1.3.1", + "lodash-es": "^4.17.21", + "marked": "^9.0.0", + "marked-terminal": "^6.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-pkg-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "bin": { + "semantic-release": "bin/semantic-release.js" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, + "node_modules/semantic-release/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/p-reduce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", + "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver-regex": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", + "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "dev": true, + "dependencies": { + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/signale/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/signale/node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "dev": true, + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spawn-error-forwarder": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", + "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "dev": true, + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "dev": true, + "dependencies": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "dev": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", + "dev": true, + "dependencies": { + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/text-extensions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", + "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/traverse": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", + "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "dev": true + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e88479bf5af420729dd278a62a6e191e9cb5871e --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "private": true, + "devDependencies": { + "@bazel/bazelisk": "^1", + "@semantic-release/bzlmod": "^1", + "@semantic-release/changelog": "^6", + "@semantic-release/commit-analyzer": "^11", + "@semantic-release/config-gitlab-bzlmod": "^1", + "@semantic-release/config-release-channels": "^1", + "@semantic-release/error": "^4", + "@semantic-release/exec": "^6", + "@semantic-release/git": "^10", + "@semantic-release/gitlab": "^12.1", + "@semantic-release/release-notes-generator": "^12", + "debug": "^4", + "semantic-release": "^22" + } +} diff --git a/placeholder/BUILD.bazel b/placeholder/BUILD.bazel deleted file mode 100644 index b0ff7afa2658367f60a0c60376230c09d4cd7a34..0000000000000000000000000000000000000000 --- a/placeholder/BUILD.bazel +++ /dev/null @@ -1,6 +0,0 @@ -load("//placeholder/test:rule.bzl", "placeholder_test") - -placeholder_test( - name = "placeholder", - size = "small", -) diff --git a/placeholder/defs.bzl b/placeholder/defs.bzl deleted file mode 100644 index 8cce2fa81055ef65b0998f9fb4ff6e362b071d86..0000000000000000000000000000000000000000 --- a/placeholder/defs.bzl +++ /dev/null @@ -1,5 +0,0 @@ -load("//placeholder/test:rule.bzl", _test = "test") - -visibility("public") - -placeholder_test = _test diff --git a/placeholder/fixture.txt b/placeholder/fixture.txt deleted file mode 100644 index af5626b4a114abcb82d63db7c8082c3c4756e51b..0000000000000000000000000000000000000000 --- a/placeholder/fixture.txt +++ /dev/null @@ -1 +0,0 @@ -Hello, world! diff --git a/placeholder/test/BUILD.bazel b/placeholder/test/BUILD.bazel deleted file mode 100644 index 53004d813387231e42f5b6f01c890b3c6d745948..0000000000000000000000000000000000000000 --- a/placeholder/test/BUILD.bazel +++ /dev/null @@ -1 +0,0 @@ -exports_files(["posix.tmpl.sh"]) diff --git a/placeholder/test/posix.tmpl.sh b/placeholder/test/posix.tmpl.sh deleted file mode 100644 index 9d7eec9afa4fa3a908f8c97967926c479bff0869..0000000000000000000000000000000000000000 --- a/placeholder/test/posix.tmpl.sh +++ /dev/null @@ -1,11 +0,0 @@ -#! /bin/sh - -# Strict shell -set -o errexit -o nounset - -# Bazel substitutions -CODE="{{code}}" -readonly CODE - -# Simple! -exit "${CODE}" diff --git a/placeholder/test/rule.bzl b/placeholder/test/rule.bzl deleted file mode 100644 index c614430adf08e6e191ea4be80f328ea80583d33e..0000000000000000000000000000000000000000 --- a/placeholder/test/rule.bzl +++ /dev/null @@ -1,41 +0,0 @@ -visibility("//...") - -ATTRS = { - "code": attr.int( - doc = "The exit code for the test.", - default = 0, - ), - "template": attr.label( - doc = "The template script to expand.", - allow_single_file = True, - default = ":posix.tmpl.sh", - ), -} - -DOC = "A simple placeholder test rule." - -def implementation(ctx): - executable = ctx.actions.declare_file(ctx.label.name) - - ctx.actions.expand_template( - output = executable, - template = ctx.file.template, - substitutions = { - "{{code}}": str(ctx.attr.code), - }, - ) - - return DefaultInfo( - executable = executable, - files = depset([executable]), - runfiles = ctx.runfiles([executable]), - ) - -placeholder_test = rule( - attrs = ATTRS, - doc = DOC, - implementation = implementation, - test = True, -) - -test = placeholder_test