diff --git a/.bazelrc.ci b/.bazelrc.ci index 63f32e6bd60f237c1889268c54de5beb273f0688..045e1ab1e0d57d974076bb974db10cb89536a112 100644 --- a/.bazelrc.ci +++ b/.bazelrc.ci @@ -16,6 +16,9 @@ common --show_timestamps # Do not wrap any output common --terminal_columns=0 +# Print relative paths where possible to reduce noise +common --attempt_to_print_relative_paths + # Output as much information in the CI log about failures as possible build --verbose_failures @@ -26,5 +29,36 @@ test --test_output=errors test --test_verbose_timeout_warnings # These locations are cached on the CI -build --disk_cache=${CI_PROJECT_DIR}/.cache/bazel/disk -build --repository_cache=${CI_PROJECT_DIR}/.cache/bazel/repo +build:local --disk_cache=${CI_PROJECT_DIR}/.cache/bazel/disk +build:local --repository_cache=${CI_PROJECT_DIR}/.cache/bazel/repo + +# Use remote cache/execution for our builds +build:remote --remote_executor=${CI_REMOTE_EXECUTOR} +build:remote --remote_cache=${CI_REMOTE_CACHE} +build:remote --remote_timeout=3600 +build:remote --remote_header=${CI_REMOTE_HEADER} +build:remote --experimental_remote_cache_compression +build:remote --jobs=${CI_REMOTE_JOBS} + +# Upload results to the Build Event Service +build:remote --bes_results_url=${CI_BES_RESULTS_URL} +build:remote --bes_backend=${CI_BES_BACKEND} + +# Add build metadata +build:remote --build_metadata=REPO_URL=${CI_PROJECT_URL} +build:remote --build_metadata=BRANCH_NAME=${CI_COMMIT_REF_NAME} +build:remote --build_metadata=COMMIT_SHA=${CI_COMMIT_SHA} +build:remote --build_metadata=HOST=${CI_SERVER_HOST} +build:remote --build_metadata=ROLE=CI +build:remote --build_metadata=USER=gitlab-ci + +# Provide detailed timing information to the remote executor +build:remote --noslim_profile +build:remote --experimental_profile_include_target_label +build:remote --experimental_profile_include_primary_output + +# Eliminate duplicate references in the Build Event Stream +build:remote --nolegacy_important_outputs + +# TODO: remove this when `bazel/ape` binaries work on remote execution `arm64` instances +build:remote --host_platform=@toolchain_utils//toolchain/platform:amd64-linux-gnu diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 27e708d860562aab2f657dfe53ad4deb6fc60d58..33095a53bd36b09cb533a8c54a8d407bd845370b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,19 @@ include: - - component: "${CI_SERVER_HOST}/ci/component/bazelisk/bazelisk@v1.0.0-beta.2" + - component: "${CI_SERVER_HOST}/ci/component/bazelisk/bazelisk@v1.0.0-beta.3" + inputs: + variables: | + CI_PROJECT_DIR + CI_PROJECT_ID + CI_REMOTE_EXECUTOR + CI_REMOTE_CACHE + CI_REMOTE_HEADER + CI_REMOTE_JOBS + CI_BES_RESULTS_URL + CI_BES_BACKEND + CI_PROJECT_URL + CI_COMMIT_REF_NAME + CI_COMMIT_SHA + CI_SERVER_HOST default: tags: @@ -10,8 +24,13 @@ test: parallel: matrix: - ROOT: - - . - - e2e + - . + - e2e + CONFIG: + - local + - remote + script: + - cd "${ROOT}"; bazelisk test --config="${CONFIG}" //... # TODO: switch this out for `rules_semantic_release` semantic-release: diff --git a/MODULE.bazel b/MODULE.bazel index 53bcdea1217a7bcb722ef0c9131059825e889ea8..8523de36c4880532b753fcbb319ceb0dcc785f42 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -7,7 +7,7 @@ module( ) bazel_dep(name = "bazel_skylib", version = "1.5.0") -bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.4") +bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.6") bazel_dep(name = "download_utils", version = "1.0.0-beta.2") bazel_dep(name = "rules_coreutils", version = "1.0.0-alpha.8") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 9f352a021a3e6bb80c7cc481affd2760fb90eb89..8c3dd5e77a2637aba19023261d45480ff3d46b96 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,11 +1,13 @@ { "lockFileVersion": 6, - "moduleFileHash": "06a53d6d6135e559b8d61fb15c371aebbd6d9da21c3dc541e4805793c8b0ba33", + "moduleFileHash": "5e236682b481c6c30b3c752f4ca5deaacc7c8dbd74bdd2eae669d605923d07a2", "flags": { "cmdRegistries": [ "https://bcr.bazel.build", "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.8/downloads", - "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-alpha.6/downloads" + "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-alpha.6/downloads", + "https://bcr.bazel.build", + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.2/downloads" ], "cmdModuleOverrides": {}, "allowedYankedVersions": [], @@ -256,7 +258,7 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "download_utils": "download_utils@1.0.0-beta.2", "rules_coreutils": "rules_coreutils@1.0.0-alpha.8", "bazel_tools": "bazel_tools@_", @@ -293,10 +295,10 @@ } } }, - "toolchain_utils@1.0.0-beta.4": { + "toolchain_utils@1.0.0-beta.6": { "name": "toolchain_utils", - "version": "1.0.0-beta.4", - "key": "toolchain_utils@1.0.0-beta.4", + "version": "1.0.0-beta.6", + "key": "toolchain_utils@1.0.0-beta.6", "repoName": "toolchain_utils", "executionPlatformsToRegister": [], "toolchainsToRegister": [], @@ -304,9 +306,9 @@ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "toolchain_utils@1.0.0-beta.4", + "usingModule": "toolchain_utils@1.0.0-beta.6", "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/MODULE.bazel", "line": 0, "column": 0 }, @@ -323,7 +325,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/MODULE.bazel", "line": 15, "column": 8 } @@ -335,7 +337,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/MODULE.bazel", "line": 21, "column": 9 } @@ -356,10 +358,10 @@ "ruleClassName": "http_archive", "attributes": { "urls": [ - "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.4/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.6/downloads/src.tar.gz" ], - "integrity": "sha512-GVDim8MC4/zegiD97LbDE2R4nYzsr1gjbx5KJG0VNNe27fEm00gv9o7x7fjxj42g//RU8yDqAOUuOmhuxvF+Kw==", - "strip_prefix": "toolchain_utils-v1.0.0-beta.4", + "integrity": "sha512-NX3FB0+TBG5SBsd8xdXYgpvPC1yj5oRjpyP9DEUAjTaFXgLEW4jO6rrV0E2yIhl/tXS6IZuiP34jAC2Cuef/Ag==", + "strip_prefix": "toolchain_utils-v1.0.0-beta.6", "remote_patches": {}, "remote_patch_strip": 0 } @@ -2603,7 +2605,7 @@ } ], "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" diff --git a/e2e/.bazelrc.ci b/e2e/.bazelrc.ci index 63f32e6bd60f237c1889268c54de5beb273f0688..045e1ab1e0d57d974076bb974db10cb89536a112 100644 --- a/e2e/.bazelrc.ci +++ b/e2e/.bazelrc.ci @@ -16,6 +16,9 @@ common --show_timestamps # Do not wrap any output common --terminal_columns=0 +# Print relative paths where possible to reduce noise +common --attempt_to_print_relative_paths + # Output as much information in the CI log about failures as possible build --verbose_failures @@ -26,5 +29,36 @@ test --test_output=errors test --test_verbose_timeout_warnings # These locations are cached on the CI -build --disk_cache=${CI_PROJECT_DIR}/.cache/bazel/disk -build --repository_cache=${CI_PROJECT_DIR}/.cache/bazel/repo +build:local --disk_cache=${CI_PROJECT_DIR}/.cache/bazel/disk +build:local --repository_cache=${CI_PROJECT_DIR}/.cache/bazel/repo + +# Use remote cache/execution for our builds +build:remote --remote_executor=${CI_REMOTE_EXECUTOR} +build:remote --remote_cache=${CI_REMOTE_CACHE} +build:remote --remote_timeout=3600 +build:remote --remote_header=${CI_REMOTE_HEADER} +build:remote --experimental_remote_cache_compression +build:remote --jobs=${CI_REMOTE_JOBS} + +# Upload results to the Build Event Service +build:remote --bes_results_url=${CI_BES_RESULTS_URL} +build:remote --bes_backend=${CI_BES_BACKEND} + +# Add build metadata +build:remote --build_metadata=REPO_URL=${CI_PROJECT_URL} +build:remote --build_metadata=BRANCH_NAME=${CI_COMMIT_REF_NAME} +build:remote --build_metadata=COMMIT_SHA=${CI_COMMIT_SHA} +build:remote --build_metadata=HOST=${CI_SERVER_HOST} +build:remote --build_metadata=ROLE=CI +build:remote --build_metadata=USER=gitlab-ci + +# Provide detailed timing information to the remote executor +build:remote --noslim_profile +build:remote --experimental_profile_include_target_label +build:remote --experimental_profile_include_primary_output + +# Eliminate duplicate references in the Build Event Stream +build:remote --nolegacy_important_outputs + +# TODO: remove this when `bazel/ape` binaries work on remote execution `arm64` instances +build:remote --host_platform=@toolchain_utils//toolchain/platform:amd64-linux-gnu diff --git a/e2e/MODULE.bazel b/e2e/MODULE.bazel index 02a18476d2ff542e731c33a04f651016bc00e2a1..519d82eb436d0221a9ef5b153f2ccb1a5514ec0f 100644 --- a/e2e/MODULE.bazel +++ b/e2e/MODULE.bazel @@ -6,7 +6,8 @@ module( ) bazel_dep(name = "rules_git", version = "0.0.0") -bazel_dep(name = "rules_diff", version = "1.0.0-alpha.3") +bazel_dep(name = "rules_diff", version = "1.0.0-beta.2") +bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.6", dev_dependency=True) local_path_override( module_name = "rules_git", diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index 5048db13eb2cbd767b6e269334881c6956bca0a1..30ce2cf5648a63db5bc2c332f3d0b62be97dce3f 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -1,11 +1,13 @@ { "lockFileVersion": 6, - "moduleFileHash": "10340cfbd665e169cd1a156d84302e899f821f79133313adde7b2ac3afaa2a70", + "moduleFileHash": "9ae1f7f1ae26e56988c17d595a7dd5d1928a8ae22d4c8049e2ebca12ef96e2b7", "flags": { "cmdRegistries": [ "https://bcr.bazel.build", "https://gitlab.arm.com/bazel/rules_download/-/releases/v1.0.0-alpha.8/downloads", - "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-alpha.6/downloads" + "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-alpha.6/downloads", + "https://bcr.bazel.build", + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.2/downloads" ], "cmdModuleOverrides": {}, "allowedYankedVersions": [], @@ -15,7 +17,7 @@ "compatibilityMode": "ERROR" }, "localOverrideHashes": { - "rules_git": "06a53d6d6135e559b8d61fb15c371aebbd6d9da21c3dc541e4805793c8b0ba33", + "rules_git": "5e236682b481c6c30b3c752f4ca5deaacc7c8dbd74bdd2eae669d605923d07a2", "bazel_tools": "1ae69322ac3823527337acf02016e8ee95813d8d356f47060255b8956fa642f0" }, "moduleDepGraph": { @@ -54,7 +56,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 18, + "line": 19, "column": 6 } }, @@ -68,7 +70,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 24, + "line": 25, "column": 6 } }, @@ -82,7 +84,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 30, + "line": 31, "column": 6 } }, @@ -96,7 +98,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 36, + "line": 37, "column": 6 } } @@ -107,7 +109,8 @@ ], "deps": { "rules_git": "rules_git@_", - "rules_diff": "rules_diff@1.0.0-alpha.3", + "rules_diff": "rules_diff@1.0.0-beta.2", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } @@ -350,17 +353,17 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "download_utils": "download_utils@1.0.0-beta.2", "rules_coreutils": "rules_coreutils@1.0.0-alpha.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } }, - "rules_diff@1.0.0-alpha.3": { + "rules_diff@1.0.0-beta.2": { "name": "rules_diff", - "version": "1.0.0-alpha.3", - "key": "rules_diff@1.0.0-alpha.3", + "version": "1.0.0-beta.2", + "key": "rules_diff@1.0.0-beta.2", "repoName": "rules_diff", "executionPlatformsToRegister": [], "toolchainsToRegister": [ @@ -370,9 +373,9 @@ { "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", "extensionName": "toolchain_export", - "usingModule": "rules_diff@1.0.0-alpha.3", + "usingModule": "rules_diff@1.0.0-beta.2", "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 13, "column": 23 }, @@ -396,7 +399,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 20, "column": 23 } @@ -409,7 +412,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 20, "column": 23 } @@ -422,7 +425,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 20, "column": 23 } @@ -435,7 +438,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 20, "column": 23 } @@ -447,9 +450,9 @@ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "rules_diff@1.0.0-alpha.3", + "usingModule": "rules_diff@1.0.0-beta.2", "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 0, "column": 0 }, @@ -469,7 +472,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 25, "column": 17 } @@ -482,7 +485,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 25, "column": 17 } @@ -495,7 +498,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 25, "column": 17 } @@ -508,7 +511,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.2/MODULE.bazel", "line": 25, "column": 17 } @@ -519,8 +522,80 @@ } ], "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", - "ape": "ape@1.0.0-alpha.3", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", + "ape": "ape@1.0.0-beta.4", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://gitlab.arm.com/bazel/rules_diff/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" + ], + "integrity": "sha512-ZAfkUE0c7Ax2EuM1vvl8w5YzWovrrz8OhKRXEr6RyRwteDLBOXTd3OPdMO0Vk0VTZ558xDJfstxP5OZpHHm3xw==", + "strip_prefix": "rules_diff-v1.0.0-beta.2", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "toolchain_utils@1.0.0-beta.6": { + "name": "toolchain_utils", + "version": "1.0.0-beta.6", + "key": "toolchain_utils@1.0.0-beta.6", + "repoName": "toolchain_utils", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "toolchain_utils@1.0.0-beta.6", + "location": { + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/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://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/MODULE.bazel", + "line": 15, + "column": 8 + } + }, + { + "tagName": "//toolchain/launcher:repository.bzl%launcher", + "attributeValues": { + "name": "launcher" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.6/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@_" }, @@ -529,10 +604,10 @@ "ruleClassName": "http_archive", "attributes": { "urls": [ - "https://gitlab.arm.com/bazel/rules_diff/-/releases/v1.0.0-alpha.3/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.6/downloads/src.tar.gz" ], - "integrity": "sha512-g8eVWXWcRpkiWjxs54Zua9tjdX/mTZV2yWslBrFqftvHDaCLxJQ1uXb4fRqC3pM1XKFouelMkviYZSMJaVAT8w==", - "strip_prefix": "rules_diff-v1.0.0-alpha.3", + "integrity": "sha512-NX3FB0+TBG5SBsd8xdXYgpvPC1yj5oRjpyP9DEUAjTaFXgLEW4jO6rrV0E2yIhl/tXS6IZuiP34jAC2Cuef/Ag==", + "strip_prefix": "toolchain_utils-v1.0.0-beta.6", "remote_patches": {}, "remote_patch_strip": 0 } @@ -733,78 +808,6 @@ } } }, - "toolchain_utils@1.0.0-beta.4": { - "name": "toolchain_utils", - "version": "1.0.0-beta.4", - "key": "toolchain_utils@1.0.0-beta.4", - "repoName": "toolchain_utils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "toolchain_utils@1.0.0-beta.4", - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/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://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", - "line": 15, - "column": 8 - } - }, - { - "tagName": "//toolchain/launcher:repository.bzl%launcher", - "attributeValues": { - "name": "launcher" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/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": { - "urls": [ - "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.4/downloads/src.tar.gz" - ], - "integrity": "sha512-GVDim8MC4/zegiD97LbDE2R4nYzsr1gjbx5KJG0VNNe27fEm00gv9o7x7fjxj42g//RU8yDqAOUuOmhuxvF+Kw==", - "strip_prefix": "toolchain_utils-v1.0.0-beta.4", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, "download_utils@1.0.0-beta.2": { "name": "download_utils", "version": "1.0.0-beta.2", @@ -3043,7 +3046,7 @@ } ], "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -3062,29 +3065,36 @@ } } }, - "ape@1.0.0-alpha.3": { + "ape@1.0.0-beta.4": { "name": "ape", - "version": "1.0.0-alpha.3", - "key": "ape@1.0.0-alpha.3", + "version": "1.0.0-beta.4", + "key": "ape@1.0.0-beta.4", "repoName": "ape", "executionPlatformsToRegister": [], - "toolchainsToRegister": [], + "toolchainsToRegister": [ + "//ape/toolchain/..." + ], "extensionUsages": [ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-alpha.3", + "usingModule": "ape@1.0.0-beta.4", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", "line": 0, "column": 0 }, "imports": { + "zig-0.11.0-arm64-darwin": "zig-0.11.0-arm64-darwin", + "zig": "zig", + "ape-m1.c": "ape-m1.c", + "ape-arm64.macho": "ape-arm64.macho", "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", "launcher": "launcher", + "resolved-ape": "resolved-ape", "cosmos-awk": "cosmos-awk", "awk": "awk", "cosmos-b2sum": "cosmos-b2sum", @@ -3119,6 +3129,8 @@ "cksum": "cksum", "cosmos-clang-format": "cosmos-clang-format", "clang-format": "clang-format", + "cosmos-cmp": "cosmos-cmp", + "cmp": "cmp", "cosmos-comm": "cosmos-comm", "comm": "comm", "cosmos-cpuid": "cosmos-cpuid", @@ -3145,6 +3157,10 @@ "dircolors": "dircolors", "cosmos-dirname": "cosmos-dirname", "dirname": "dirname", + "cosmos-diff": "cosmos-diff", + "diff": "diff", + "cosmos-diff3": "cosmos-diff3", + "diff3": "diff3", "cosmos-du": "cosmos-du", "du": "du", "cosmos-emacs": "cosmos-emacs", @@ -3237,6 +3253,8 @@ "od": "od", "cosmos-paste": "cosmos-paste", "paste": "paste", + "cosmos-patch": "cosmos-patch", + "patch": "patch", "cosmos-pathchk": "cosmos-pathchk", "pathchk": "pathchk", "cosmos-pigz": "cosmos-pigz", @@ -3275,6 +3293,8 @@ "runcon": "runcon", "cosmos-script": "cosmos-script", "script": "script", + "cosmos-sdiff": "cosmos-sdiff", + "sdiff": "sdiff", "cosmos-sed": "cosmos-sed", "sed": "sed", "cosmos-seq": "cosmos-seq", @@ -3382,16 +3402,86 @@ "cosmos-zsh": "cosmos-zsh", "zsh": "zsh", "cosmos-zstd": "cosmos-zstd", - "zstd": "zstd", - "cli": "cli", - "diff": "diff", - "diff3": "diff3", - "sdiff": "sdiff", - "cmp": "cmp", - "patch": "patch" + "zstd": "zstd" }, "devImports": [], "tags": [ + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint", + "zig" + ], + "integrity": "sha256-xuv5J7sTpwfXQmdHSp9VMnTmSQb9Ib8cdaIL3oyt97I=", + "links": { + "zig-macos-aarch64-0.11.0/zig": "zig", + "zig": "entrypoint" + }, + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/zig/0.11.0/zig-macos-aarch64-0.11.0.tar.xz", + "https://ziglang.org/download/0.11.0/zig-macos-aarch64-0.11.0.tar.xz" + ], + "name": "zig-0.11.0-arm64-darwin" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 17, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/select:defs.bzl%toolchain_local_select", + "attributeValues": { + "map": { + "arm64-darwin": "@zig-0.11.0-arm64-darwin" + }, + "name": "zig" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 36, + "column": 7 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": false, + "integrity": "sha256-siSN87YY1f4LMWIEe8OCycM+61MmIVRAczNhQ28umGo=", + "output": "ape-m1.c", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmos.zip/3.3.1/ape-m1.c", + "https://raw.githubusercontent.com/jart/cosmopolitan/3.3.3/ape/ape-m1.c" + ], + "name": "ape-m1.c" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 45, + "column": 14 + } + }, + { + "tagName": "//ape/compile:repository.bzl%compile", + "attributeValues": { + "srcs": [ + "@ape-m1.c" + ], + "output": "ape", + "zig": "@zig//:entrypoint", + "name": "ape-arm64.macho" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 58, + "column": 8 + } + }, { "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { @@ -3399,14 +3489,15 @@ "integrity": "sha256-h3zL1GUkMGVCbLSjyrQ1GsrZGGSfhlZVa7YEiC7q0I8=", "output": "ape", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-arm64.elf" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ape-arm64.elf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ape-arm64.elf" ], "name": "ape-arm64.elf" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 66, "column": 18 } }, @@ -3417,14 +3508,15 @@ "integrity": "sha256-fBz4sk4bbdatfaOBcEXVgq2hRrTW7AxqRb6oMOOmX00=", "output": "ape", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.elf" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ape-x86_64.elf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ape-x86_64.elf" ], "name": "ape-x86_64.elf" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 66, "column": 18 } }, @@ -3435,14 +3527,15 @@ "integrity": "sha256-btvd3YJTsgZojeJJGIrf2OuFDpw9nxmEMleBS5NsWZg=", "output": "ape", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.macho" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ape-x86_64.macho", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ape-x86_64.macho" ], "name": "ape-x86_64.macho" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 66, "column": 18 } }, @@ -3453,8 +3546,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 34, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 85, "column": 3 } }, @@ -3465,32 +3558,47 @@ "arm64-linux": "@ape-arm64.elf", "amd64-linux": "@ape-x86_64.elf", "amd64-darwin": "@ape-x86_64.macho", + "arm64-darwin": "@ape-arm64.macho", "windows": "@ape.pe" }, "name": "launcher" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 38, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 87, "column": 7 } }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//ape/toolchain/ape:type", + "name": "resolved-ape" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 100, + "column": 9 + } + }, { "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-f+uWrpvZmKp0icmVlTusCWs4TvqR2FrmOkQ1E7JEo/Q=", + "integrity": "sha256-S8i3mKq7mEtBZzo1Uu679YqnAWzkikcVdf4VqEqI070=", "output": "awk", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/awk" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/awk", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/awk" ], "name": "cosmos-awk" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3502,8 +3610,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3511,17 +3619,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-C0A+VvLQwqWyZ43zLhgi3tX5X8mCSGUT4kBoTsCtsOA=", + "integrity": "sha256-hybI849qLSwgx7YJkQn7jWLMnagPL2HjvrKm/piVuhs=", "output": "b2sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/b2sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/b2sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/b2sum" ], "name": "cosmos-b2sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3533,8 +3642,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3542,17 +3651,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-UKvhDPWxj5CBiJcC8v22sLAkAMRbeyr0HgsQT3aRpJo=", + "integrity": "sha256-TZkpwZAqSQTHHcRwl88F8haL6d7vm8nzdB50IBU7Mlw=", "output": "base32", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base32" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/base32", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/base32" ], "name": "cosmos-base32" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3564,8 +3674,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3573,17 +3683,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Ma0Uq9TjmARCgwZWzTBcuEFyIkMXUahQqms9sUQPYjE=", + "integrity": "sha256-5yuKsVWZrZm/uaI23z8UBm4KmrNy+V2iqP/yNIAfl00=", "output": "base64", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base64" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/base64", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/base64" ], "name": "cosmos-base64" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3595,8 +3706,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3604,17 +3715,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-wVt/L/UlzFofy0HnJzUxwSipYmqvpnWSYNffI6kHSOg=", + "integrity": "sha256-xKbtsOkcHIi9mW3aI1JGo9H3pqan8hBqfsPxoh3e32s=", "output": "basename", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basename" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/basename", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/basename" ], "name": "cosmos-basename" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3626,8 +3738,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3635,17 +3747,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ss0EQU9BQPJDOhFS2kyr39G9ql6cme2hKhJ5LXu41No=", + "integrity": "sha256-RWpNzGmO/BjqSz9l6DEdOhFX5qoo1iHDJR8sNiahPe0=", "output": "basenc", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basenc" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/basenc", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/basenc" ], "name": "cosmos-basenc" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3657,8 +3770,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3666,17 +3779,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-817s6bXbU96XAE/lpw/bVjtaG/HZNkiM2orJBhKWaXY=", + "integrity": "sha256-a5aWfQrsx8zogqy1WCJ/sYEaNlxBbsY9lZVf4VMYTT0=", "output": "bash", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bash" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/bash", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/bash" ], "name": "cosmos-bash" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3688,8 +3802,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3697,17 +3811,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-iRihZOPxJy8riq00G9QqyuDphQGZW87arvQa7wu5WJ0=", + "integrity": "sha256-9ZJIEqpYwPi0OqU7N8BSAOci5yKcdv9cBnD5ZGzkj8g=", "output": "berry", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/berry" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/berry", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/berry" ], "name": "cosmos-berry" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3719,8 +3834,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3728,17 +3843,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-5dbhyGt64HdqXrSmTVdOlpyVgW3A3FTcRy9JNKlETbE=", + "integrity": "sha256-Tm3e9kratlJPUF8d/+fIGyjmeBjX7NAkYDyiL4ks2jM=", "output": "brotli", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/brotli" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/brotli", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/brotli" ], "name": "cosmos-brotli" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3750,8 +3866,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3759,17 +3875,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-i0jxsBCz1axEaa9Kd1TFPTFwAVYFhbR6dGqUl/OfwYQ=", + "integrity": "sha256-lqfcO/t/s5f19EUnnV/oijc+iBnvmyblMAEM7FrcRZU=", "output": "bzip2", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bzip2" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/bzip2", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/bzip2" ], "name": "cosmos-bzip2" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3781,8 +3898,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3790,17 +3907,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-hxd0pfBMmXT44ii103FiMUI3pQYHj7UmNW4pqnw12HY=", + "integrity": "sha256-zn8YVGvKwuQoDg9YXAE+9nxYM4E8t004mwIyNrqVpbw=", "output": "cat", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cat" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cat", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cat" ], "name": "cosmos-cat" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3812,8 +3930,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3821,17 +3939,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-NKrTh2us8Pc67LI7udJg9JhlhobHU03laNr4U+5DhF8=", + "integrity": "sha256-qoL4zarrnBVQ+V6+xYnH4XCv856fUS/RxwQuBUGRFks=", "output": "chcon", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chcon" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chcon", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chcon" ], "name": "cosmos-chcon" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3843,8 +3962,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3852,17 +3971,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-7KvHpFFsvhK981vIlGyegWuQhIzxY87lYcYfNB/qdC8=", + "integrity": "sha256-GoWZbn/c4+E+TQhqD6lIOMVWUDJnbp6Wk8SHU7zENoU=", "output": "chgrp", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chgrp" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chgrp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chgrp" ], "name": "cosmos-chgrp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3874,8 +3994,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3883,17 +4003,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-XlKnJcZ1t7cdBKC2twaXC8/X6p7bSpnFoIDQ0xxdrhQ=", + "integrity": "sha256-LkN2ONSleTXKvpz/dYlk4m9UJRuCztov3+DlOEodXDE=", "output": "chown", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chown" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chown", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chown" ], "name": "cosmos-chown" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3905,8 +4026,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3914,17 +4035,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-lN46T08G7T85BC9L/q4k9vlLwNKWbyD0YkAclHWUGuw=", + "integrity": "sha256-jZbYqT/TwIpw6BO9FfJ3GxvklpKE0mBBXiNuGSbtsns=", "output": "chroot", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chroot" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chroot", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chroot" ], "name": "cosmos-chroot" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3936,8 +4058,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3945,17 +4067,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZN7kzOdpdzCUsa+1+2dsZ19980fhL5x7tnYdKRqW7OY=", + "integrity": "sha256-hfAnWqmktIYXHEiTaKWQL/fDXK7bnHQONkRKtaMd5J4=", "output": "cksum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cksum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cksum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cksum" ], "name": "cosmos-cksum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3967,8 +4090,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -3979,14 +4102,15 @@ "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", "output": "clang-format", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/clang-format" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/clang-format", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/clang-format" ], "name": "cosmos-clang-format" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -3998,8 +4122,40 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-8KPABEMCQeKSwHulagH5f382QOqkVpFp1Y3mohbcHk8=", + "output": "cmp", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cmp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cmp" + ], + "name": "cosmos-cmp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-cmp//:cmp", + "name": "cmp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4007,17 +4163,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Z4pMcRlfC6n9KC5Z8cSZT5NA+e/0Zl30tW4zRB+Ml7I=", + "integrity": "sha256-uh4mLvzwY0QmCT32SRL/f0ubzXfszKpvb2ZtboQrNIA=", "output": "comm", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/comm" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/comm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/comm" ], "name": "cosmos-comm" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4029,8 +4186,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4038,17 +4195,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KZ7I9Vj0m0SYjYdlFCDsWAeZZHq5CL2V2/DiBJgVPFE=", + "integrity": "sha256-wAGvPA8axzW+XJ5w861q7IV518W7WMrZ/tbZ0Z78t1E=", "output": "cpuid", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cpuid" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cpuid", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cpuid" ], "name": "cosmos-cpuid" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4060,8 +4218,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4069,17 +4227,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-PnfIPYD2n2cZ8rxV26jvFiE6e+XROXGwhE6sbpjbPSY=", + "integrity": "sha256-nLz8hfRVZDGz/UVq1/Ge0j4Q06eSLgLxu4aRexwEelA=", "output": "csplit", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/csplit" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/csplit", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/csplit" ], "name": "cosmos-csplit" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4091,8 +4250,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4100,17 +4259,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-6GwrTt16hCzJ8EoVXQXoetwnOIOhBR4T4gX2PO/wIfQ=", + "integrity": "sha256-x/101oqxSvgRoQ9N9+sZkuC7/tV+zVnId4Jo4gX5PIU=", "output": "ctags", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ctags" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ctags", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ctags" ], "name": "cosmos-ctags" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4122,8 +4282,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4131,17 +4291,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-jc8LNKBMlWgGeHW3Tum9M6AfV2a5PlLmJunmfs00q/M=", + "integrity": "sha256-54mSqLkXfwMSRZtPa2w2T8XuvE12o9QxJRQYmOGn1YY=", "output": "curl", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/curl" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/curl", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/curl" ], "name": "cosmos-curl" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4153,8 +4314,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4162,17 +4323,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-N6iYRU/Ue0YN1tW0YElHjCVe0aPrUtbSxWFaJUPXGAE=", + "integrity": "sha256-FDcHrxJ+CjkPOYFD/F7F9EOF93TKbU2/N7CHP8vte4I=", "output": "cut", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cut" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cut", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cut" ], "name": "cosmos-cut" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4184,8 +4346,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4193,17 +4355,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-DQjaobzAoYxtxBvvDdyQLbTvjPV61HLMOahNEXz8dOM=", + "integrity": "sha256-AMQZpQl5cfVZ/1vZAn/SnuSGC34CkfPMXA9tQixE/zM=", "output": "dash", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dash" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dash", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dash" ], "name": "cosmos-dash" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4215,8 +4378,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4224,17 +4387,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ohY3OEDwK6DOSWfLFlUa/4MTTHd9kKGN8NYTwGyWOZA=", + "integrity": "sha256-hUDSYI+lpEhVX6zhFnNHu/N3bNfDeWSJQjkAzcoYCjA=", "output": "datasette", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/datasette" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/datasette", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/datasette" ], "name": "cosmos-datasette" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4246,8 +4410,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4255,17 +4419,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-4r91y6qrOb4PK5AQ23uY2lskgprTRGLwDTBOkMPF1/c=", + "integrity": "sha256-uNP3r6CkyURYW7vH5rR/FXMQpoBgiyW2sTn6qUEs0ao=", "output": "date", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/date" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/date", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/date" ], "name": "cosmos-date" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4277,8 +4442,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4286,17 +4451,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-rrkKRiH346Qfr/uwtOFe5x+Q3X1yajhCndbTxnkkiSI=", + "integrity": "sha256-VtOW2S2dzEAwP/5B9Qj4u/qZndNCo0lJrSqWX7Sd6vo=", "output": "df", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/df" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/df", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/df" ], "name": "cosmos-df" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4308,8 +4474,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4317,17 +4483,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-XfB99aziyrFfAHbOzI36cXPn+633uND4y02Mn9wTx98=", + "integrity": "sha256-oNxnS6F4pCNMedClbW/NFRRbP1XAwsdZpGJ2VsXug0g=", "output": "dir", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dir" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dir" ], "name": "cosmos-dir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4339,8 +4506,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4348,17 +4515,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FTu1gC+xUzR1NTxaXk9ZLu4Gp2ACwnQC2FvHJySd1/Q=", + "integrity": "sha256-ASzE+h3h/0XBA4vrOyPSKptSE0tJEpbfFtMN1nDhGa4=", "output": "dircolors", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dircolors" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dircolors", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dircolors" ], "name": "cosmos-dircolors" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4370,8 +4538,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4379,17 +4547,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-F9LmexRfLOqVyybPSXv+2xBhLakd8fnV01T/yZK78EU=", + "integrity": "sha256-EMAAvhNKylQI5YR1O3P1locWiIUpclMesgKAu9UWNec=", "output": "dirname", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dirname" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dirname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dirname" ], "name": "cosmos-dirname" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4401,8 +4570,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4410,30 +4579,31 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-cwPg/fIABRhBnlWOXTpC7GaIEi/L2vgMqPUAZ8vnxLA=", - "output": "du", + "integrity": "sha256-1ZQPcT1/LLFKJRq8K1S7sICi4VumBRAt6FSVKejBDek=", + "output": "diff", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/du" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/diff", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/diff" ], - "name": "cosmos-du" + "name": "cosmos-diff" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, { "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "binary": "@cosmos-du//:du", - "name": "du" + "binary": "@cosmos-diff//:diff", + "name": "diff" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4441,30 +4611,31 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FHVaf2drHxbWKWpCc0pBlt8NNLiR6x6pX9KrhCkI5zM=", - "output": "emacs", + "integrity": "sha256-ncg5o4aApr13g34awJ1oI4zfr9WqTq4JKCkwBXbWmF4=", + "output": "diff3", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacs" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/diff3", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/diff3" ], - "name": "cosmos-emacs" + "name": "cosmos-diff3" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, { "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "binary": "@cosmos-emacs//:emacs", - "name": "emacs" + "binary": "@cosmos-diff3//:diff3", + "name": "diff3" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4472,30 +4643,31 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-2p9WFK4fF0vnJDUyNTd6a4jigqsQpp0aG41e0MQSJOM=", - "output": "emacsclient", + "integrity": "sha256-XeQC8BcRZjuA+BCb+JRyRe+6wN3m3iVWZ7BIBF7guvA=", + "output": "du", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacsclient" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/du", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/du" ], - "name": "cosmos-emacsclient" + "name": "cosmos-du" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, { "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "binary": "@cosmos-emacsclient//:emacsclient", - "name": "emacsclient" + "binary": "@cosmos-du//:du", + "name": "du" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4503,30 +4675,31 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KSmB7dXht0FmmkJB8JQnUw6uQIfG36SugQXyMdPKPso=", - "output": "env", + "integrity": "sha256-DLJvKJfmHsrzgD7083fWvp3RFiUMvs3lvWk0xLH92z8=", + "output": "emacs", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/env" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/emacs", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/emacs" ], - "name": "cosmos-env" + "name": "cosmos-emacs" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, { "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "binary": "@cosmos-env//:env", - "name": "env" + "binary": "@cosmos-emacs//:emacs", + "name": "emacs" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4534,17 +4707,82 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-GDxdiCM3bnYQtE+brm6GgDN7EyjV+5vxYj1McQ/YGLQ=", - "output": "expand", + "integrity": "sha256-6hH6jn2pBX9VsoU4v3u3Xol4MR/6vskzIOwvOhMH5M4=", + "output": "emacsclient", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expand" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/emacsclient", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/emacsclient" ], - "name": "cosmos-expand" + "name": "cosmos-emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-emacsclient//:emacsclient", + "name": "emacsclient" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Lm8iE0YBdvYwn4RMAyqiLWbVxqaEf2iNWilY3PPAGN4=", + "output": "env", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/env", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/env" + ], + "name": "cosmos-env" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-env//:env", + "name": "env" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-/hCOZX9bhwc5SjWQ9GIWwbcPCozCUWUKa/iuDv/ih2c=", + "output": "expand", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/expand", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/expand" + ], + "name": "cosmos-expand" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4556,8 +4794,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4565,17 +4803,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-GD2DSrlrlym+z+57/BUKL50paNN1QU6FGe1D3wxtnnk=", + "integrity": "sha256-31jw0oaJRgL3qHsBhGDc0TEuSNoAiBH8gyjzRzz87UE=", "output": "expr", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expr" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/expr", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/expr" ], "name": "cosmos-expr" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4587,8 +4826,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4596,17 +4835,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Pmziyh/iAkeaU/XHmAblS/4QfA6YDbml6qSX/yqVj6s=", + "integrity": "sha256-me2S4CN3G/KcERW/B86F9MbnvuQg4jaNPWoH4nUH7mk=", "output": "factor", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/factor" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/factor", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/factor" ], "name": "cosmos-factor" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4618,8 +4858,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4627,17 +4867,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FuIagCcD2snlx2D2D2k5+qhA2KXgWcoxMDY7O1qlE74=", + "integrity": "sha256-KuxblC3tmFtyDjUcdGIag/UVdOGhvxtvrJkRrP6qyl4=", "output": "false", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/false" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/false", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/false" ], "name": "cosmos-false" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4649,8 +4890,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4658,17 +4899,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-k3BJOldX6NzX1Aq/RX6Q6PQts/3l9IFR7BILMIDUkg8=", + "integrity": "sha256-7h4OC/Lz/iD7WkTxmvmSZOflw/E6gTMssKSz68qPCFw=", "output": "find", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/find" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/find", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/find" ], "name": "cosmos-find" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4680,8 +4922,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4689,17 +4931,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZjBJtahjGrr6Xll85ZZo+lTGEZNdaSksUNqpkpMqyrY=", + "integrity": "sha256-DB2vUqeSnUryfZj+qibUGKMs4Abcz6qzM3w6lawptsM=", "output": "fmt", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fmt" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/fmt", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/fmt" ], "name": "cosmos-fmt" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4711,8 +4954,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4720,17 +4963,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-u5I83GpxaXBKFtzsJVJEWdQ1hJkpRmJGbQVHzjOYJ3w=", + "integrity": "sha256-TdlGtv30nM28eoUXx9jjhAf7Zj834R0SHz0yfbcrWio=", "output": "fold", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fold" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/fold", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/fold" ], "name": "cosmos-fold" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4742,8 +4986,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4751,17 +4995,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-o5a22Uli7i9upNh3z9qwPRFv3vIF7hOSdYMCXz8ioQc=", + "integrity": "sha256-3J/jjvnCUMTfEyRc5RsxmVJw0jpSwmmzrEFO/u2/pQ8=", "output": "gmake", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/gmake" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gmake", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gmake" ], "name": "cosmos-gmake" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4773,8 +5018,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4782,17 +5027,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-2e6ANHtNrFdAKdmSAVBOYWacqaF9SxOhrwKesYwIfSc=", + "integrity": "sha256-jZ4Oj9zhG/UUB2QmhMdDsx4fTdL8/0xvBCHOK/rGSys=", "output": "greenbean", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/greenbean" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/greenbean", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/greenbean" ], "name": "cosmos-greenbean" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4804,8 +5050,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4813,17 +5059,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-btb7IC+1GiiU+CTMX4F7F8ESESShnVx90+Vz8uhgkkA=", + "integrity": "sha256-geISCmpxm4c2gwPnR+XjF47+j/mw2epm5qYEn5Vrvok=", "output": "grep", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/grep" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/grep", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/grep" ], "name": "cosmos-grep" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4835,8 +5082,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4844,17 +5091,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-1hRskXbgQrpy3YedFo9SmYix5KUTJAV9cL6I0T/DF7c=", + "integrity": "sha256-64yeH5wPP7omE7VfLLH8HGWjyE7zgdzMF8oLpVz+5PY=", "output": "groups", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/groups" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/groups", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/groups" ], "name": "cosmos-groups" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4866,8 +5114,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4875,17 +5123,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-I4EetDV9GYYKHCNANar3iwNNZMJhJ9+KaQBkWyA0r7o=", + "integrity": "sha256-Lr5xxWMwjZjQUh2ODx/zDzTO3fx8Yw5694p1t7zG0AU=", "output": "head", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/head" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/head", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/head" ], "name": "cosmos-head" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4897,8 +5146,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4906,17 +5155,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-JtW0OHrUUwEaHsb03yfoawekOVad+XZ2sl8ZnM0+rYc=", + "integrity": "sha256-8JUzzmsMkhu2sc9w2I/nb8recinaAamgGe7JEQh98kI=", "output": "id", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/id" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/id", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/id" ], "name": "cosmos-id" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4928,8 +5178,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4937,17 +5187,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FT0vE0RtmwB2+ArCfbm59mou/sLQzymNvTqogiVpRTg=", + "integrity": "sha256-Iu1sv7WjlREuCQp3mgDxFCRf0byn5beC8JmHjWodb/M=", "output": "install", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/install" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/install", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/install" ], "name": "cosmos-install" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4959,8 +5210,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4968,17 +5219,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KVBK8dBkDM+LijUS4hi7zNsa18hZvJqNS6uWQMvxgWs=", + "integrity": "sha256-eb7PzIfyziQZ8LeauwpuES+YKemu52jmt0KgJ3pAzks=", "output": "join", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/join" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/join", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/join" ], "name": "cosmos-join" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -4990,8 +5242,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -4999,17 +5251,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-+4mYRIwPgtQ7BEoK7/E6vXx5iriV3vpk0eNrNI2kNh8=", + "integrity": "sha256-l4b6fMDZR4yHnP1ZpRVL2KfCOgbKDHZkUzo8wlZkMUA=", "output": "kill", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/kill" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/kill", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/kill" ], "name": "cosmos-kill" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5021,8 +5274,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5030,17 +5283,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ku05PfJLk7zICV/ljbzXavHBvnMlitaLcd3uJvfZcfU=", + "integrity": "sha256-pysLPyq9zi5gTcj+UTu41PgZsRnUAdYzATIUMiMEsQw=", "output": "less", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/less" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/less", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/less" ], "name": "cosmos-less" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5052,8 +5306,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5061,17 +5315,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-8XQ3CXLLxo7ykT/+jGJovYCAzSEih6H4wnQ26+Q04lM=", + "integrity": "sha256-ui3H0RF4G0JHV9kbDIy5qviR+mKEN//98jHfznq8tO4=", "output": "life", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/life" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/life", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/life" ], "name": "cosmos-life" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5083,8 +5338,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5092,17 +5347,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-MRqILGFYuhtO470TDsIxfQe7NE1GrHjbWCnU2nb31QQ=", + "integrity": "sha256-HFtwRXzP/Z+pJTM/Yz7+AMXumO46HmvGGfsHE9vUox8=", "output": "link", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/link" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/link", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/link" ], "name": "cosmos-link" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5114,8 +5370,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5123,17 +5379,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Px+ZWWbcFLnnjuORljLehyqLBW3UIuGtEqQf3vnJXgo=", + "integrity": "sha256-EEOqXakHybI51BOxnBCHwLeYlwF8iSSx8p3Gxgcz0Qc=", "output": "links", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/links" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/links", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/links" ], "name": "cosmos-links" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5145,8 +5402,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5154,17 +5411,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-QevM7NFKo4T79iCOOu6JjAxVuoQHAiSi3zkYf3HQoHI=", + "integrity": "sha256-FtXuVwYLaC/DT3LPF8coiSMCEOmVVorVzqBYDDRtjyg=", "output": "ln", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ln" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ln", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ln" ], "name": "cosmos-ln" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5176,8 +5434,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5185,17 +5443,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-zsyqygY6K+gwbw9Cw7j+JEjd1W4T66xKil7PqeFtfA8=", + "integrity": "sha256-ZQUPf3kqvmik5citQP+wJiHeOJWrcX4TIDLytEuRyyo=", "output": "locate", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/locate" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/locate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/locate" ], "name": "cosmos-locate" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5207,8 +5466,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5216,17 +5475,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-if+qby9Pyn2PT53NEIoPXW/xusX5N8TK6lFNhOYEk7A=", + "integrity": "sha256-IMIHQygOJnWQ2pPMqcFZwKURdNAZM5onxESxBcLM7kM=", "output": "logname", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/logname" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/logname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/logname" ], "name": "cosmos-logname" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5238,8 +5498,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5247,17 +5507,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-09ABdeL9W/aloHvspUOTk4s1qXPKelusGWs/fI5elBY=", + "integrity": "sha256-Fno6FUKMAA/8Uk2rsAauhr/b5uqeZcs2oAy+s8uHx3w=", "output": "ls", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ls" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ls", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ls" ], "name": "cosmos-ls" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5269,8 +5530,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5278,17 +5539,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-xuf+7nkxzN/uNIJ8j7adEqf6dvm3X+QT4LeDtRBeoBM=", + "integrity": "sha256-LRYoHAQg+M8kQKtX6gCjSvD4b9puEbTK2t4z6hyVW8I=", "output": "lua", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lua" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/lua", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/lua" ], "name": "cosmos-lua" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5300,8 +5562,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5309,17 +5571,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-hS8xfK0iRyQ51wndmPpRqC2iJfJzvk4OSPtdBNoDzIg=", + "integrity": "sha256-ymvYKyvlv31C6tdLYCVFfhaqvmZ5J37RDbxeGx/6rrI=", "output": "lz4", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lz4" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/lz4", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/lz4" ], "name": "cosmos-lz4" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5331,8 +5594,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5340,17 +5603,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-oxtmxi2jmEKg2EX4gzBsmikSI3H56Cb4TL5JDLrHmes=", + "integrity": "sha256-98atSW2fzibEFrcpFy77A7IvnW0TtMEbeMKxicWb8FM=", "output": "make", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/make" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/make", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/make" ], "name": "cosmos-make" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5362,8 +5626,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5371,17 +5635,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-V02adwdclgCCznwYMv8TzulmGsJCj0nY6BbLm9+3BmI=", + "integrity": "sha256-1lNBqdyji+ttmR+4sIS6DXcJs6d+67gF0+Q3bUqNaIs=", "output": "md5sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/md5sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/md5sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/md5sum" ], "name": "cosmos-md5sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5393,8 +5658,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5402,17 +5667,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Qn7ki2D6CeAj35bXjjdtn8uoTIWvQzrJQgQW5YwVjNE=", + "integrity": "sha256-Z/dfvumWh0v8wr0l8ByZztaztwMkfekaOXNVnFLVxEk=", "output": "mkfifo", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mkfifo" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkfifo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkfifo" ], "name": "cosmos-mkfifo" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5424,8 +5690,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5433,17 +5699,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-WuoCTQkW92gL+rkPEsIVekSW3T5jWpLe4d0tkEEVlto=", + "integrity": "sha256-C7rFuRsgVIA63trDx8rTpFGJztXbNAPMtNuqbzGeqdw=", "output": "mknod", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mknod" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mknod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mknod" ], "name": "cosmos-mknod" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5455,8 +5722,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5464,17 +5731,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-e4OIGcZD2+IeoysBxEx3+PzbkFxduS3t17Xh6APVTg0=", + "integrity": "sha256-GihMOG1RDJHUqphmOZPwkfEaVC4jC/X0kCRskpH09u8=", "output": "mktemp", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemp" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mktemp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mktemp" ], "name": "cosmos-mktemp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5486,8 +5754,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5495,17 +5763,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ukMdMND+GwcBR+OdH6KDdHTYSOc1pKWAbYomyj9ZoOo=", + "integrity": "sha256-WreRwEGUss++hwxb+3Cttu72Voe4yi4E7Xyr9soCXps=", "output": "mktemper", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemper" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mktemper", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mktemper" ], "name": "cosmos-mktemper" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5517,8 +5786,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5526,17 +5795,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-E8aX3D/XXItFzwVS7UO3tCD2I4gCx9K7oqFjkWC+hEA=", + "integrity": "sha256-trc2X1Jg1JTviP+nbelsQvtMmgrh5gtF7fEijdDvkZY=", "output": "nano", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nano" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nano", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nano" ], "name": "cosmos-nano" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5548,8 +5818,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5557,17 +5827,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-3tEEU6VMPK8bwloRQ2CkLXD8+icXne+EBdHUtfYPsmw=", + "integrity": "sha256-JOqaQ2aNcGoiB3YdX2zLCGGD8kFr4Glv3PLPVej/nwc=", "output": "nesemu1", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nesemu1" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nesemu1", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nesemu1" ], "name": "cosmos-nesemu1" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5579,8 +5850,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5588,17 +5859,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ukGk1uudFSnluQXKEtGsAIzL6JhXe4NaLC53QdcyK+E=", + "integrity": "sha256-+fHYlw1WIDX4kCzoTDYy5tqI/BdetF7WlxkJCWpJlrM=", "output": "nice", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nice" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nice", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nice" ], "name": "cosmos-nice" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5610,8 +5882,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5619,17 +5891,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-6vNW/WRG9QrsaksgbhhdEPyb9VgzATt2AEJj6jlyfmo=", + "integrity": "sha256-MdTFCVaBaiknlbcAXEshhc6P+QDEmNLH6NOt1bGbbu4=", "output": "ninja", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ninja" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ninja", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ninja" ], "name": "cosmos-ninja" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5641,8 +5914,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5650,17 +5923,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-per3cJdCvbTUMe1rs76QJ/E9eQYfUl4VVPafj0yJFHk=", + "integrity": "sha256-y5a/fgKdjraA7e+RUKZSh6BIQPviZsxu4720/yPzGUI=", "output": "nl", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nl" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nl", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nl" ], "name": "cosmos-nl" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5672,8 +5946,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5681,17 +5955,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-4eCoAypbSFOk/Bgq8jfyv2BPPP78iNLXb711CK8buGU=", + "integrity": "sha256-sTiFAUHIl+IF6N8wChBjYZj3NJg4vN461JPY9T1peo8=", "output": "nohup", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nohup" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nohup", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nohup" ], "name": "cosmos-nohup" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5703,8 +5978,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5712,17 +5987,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-uKzADOYvOwHwG9Wc7v0EHPJdidt7Vx1CY0ur9QL0ziM=", + "integrity": "sha256-Dydu9oowmpkajx9rq006f5I4Z0BhP6EJv+S0xEjTRcU=", "output": "nproc", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nproc" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/nproc", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/nproc" ], "name": "cosmos-nproc" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5734,8 +6010,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5743,17 +6019,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-CT5axyDY1ASWxzGJb+hDVTRiWqU2f8+CSzhehOdR/wY=", + "integrity": "sha256-7VTO7GYItNhcoqC7qixlY4dK7l0TgRFRBivCJjbls5Y=", "output": "numfmt", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/numfmt" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/numfmt", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/numfmt" ], "name": "cosmos-numfmt" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5765,8 +6042,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5774,17 +6051,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Hy0uDDsgdci74s+jI+R2Bkgj4LVaW0djddoqkzTebSE=", + "integrity": "sha256-RV+nBJ885wCxqLW8+UOEm3rQopQQhQ/rHuHJYrhZiYA=", "output": "od", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/od" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/od", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/od" ], "name": "cosmos-od" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5796,8 +6074,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5805,17 +6083,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Sa5G8cxyh5Vsr6kkf/wmwnos0KYwIUHNI1/dZ16n24U=", + "integrity": "sha256-d37G1PptmT8DvFYb0A51tHRAONW3k2xq4y8pFnbR/FA=", "output": "paste", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/paste" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/paste", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/paste" ], "name": "cosmos-paste" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5827,8 +6106,40 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-dUVoOS8qaaVAsTlHp5DnupNPB02ZBfVBYUNoFEQVfY4=", + "output": "patch", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/patch", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/patch" + ], + "name": "cosmos-patch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-patch//:patch", + "name": "patch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5836,17 +6147,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZjR+IGm8fv0b/hy4hmdi1xuxpoA5A7MR0AnGndlfTvc=", + "integrity": "sha256-qjcLXvmgW3bbARJqpE5PF1LdaVrvnQZVsmBFgTM5/JY=", "output": "pathchk", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pathchk" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pathchk", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pathchk" ], "name": "cosmos-pathchk" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5858,8 +6170,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5867,17 +6179,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "integrity": "sha256-pvWipO8MGunU157lNj5pkNwMwDYSUFjtx7nWoNxBDw8=", "output": "pigz", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pigz", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pigz" ], "name": "cosmos-pigz" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5889,8 +6202,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5898,17 +6211,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ObmAOis790fvuP+YpdxP9cyR5ISU6BB4G/8un3xR4ns=", + "integrity": "sha256-cCtYw56s7y1pYOCm/PNgp1Y+pgf8K0UjVVsikUIoJQE=", "output": "pinky", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pinky" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pinky", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pinky" ], "name": "cosmos-pinky" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5920,8 +6234,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5929,17 +6243,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-rcK6umgSKLv06PIV+glVDhKgPr79vfIodUEsZ7WyGaM=", + "integrity": "sha256-eaFRVXB2hGp2o9lYNSP+bb+sxOQ04bqCU2mDEmSIRN0=", "output": "pledge", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pledge" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pledge", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pledge" ], "name": "cosmos-pledge" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5951,8 +6266,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5960,17 +6275,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FVC8+/eRiBZ2MHpZNZRHrRMoDFLi4S9NRMVPQSWimOo=", + "integrity": "sha256-Cd292alJ/36s1BOyfPj+SDDCuMGsgduzsjHspANOguU=", "output": "pr", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pr" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pr", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pr" ], "name": "cosmos-pr" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -5982,8 +6298,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -5991,17 +6307,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-zoWUC3FJVC6a8iM2vmiEVNa4mjhmLo76aPkh2TXB+bc=", + "integrity": "sha256-sCxezf/rJ5S2Yw9ELAh8TD0MCUKhTjdwvLfHBVHUiyc=", "output": "printenv", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printenv" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printenv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printenv" ], "name": "cosmos-printenv" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6013,8 +6330,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6022,17 +6339,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-myO0x/BQSNFuWWwDop0ph/WmO8tBsnxuTIoIzC6Xsaw=", + "integrity": "sha256-Q6HlaWrVneltekJ6JEceoU+yFzN9o9xpkI4UVwSXFrE=", "output": "printimage", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printimage" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printimage", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printimage" ], "name": "cosmos-printimage" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6044,8 +6362,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6053,17 +6371,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-x6abLQHeAmLQN213aU0nx+4xfZSfWqlYWP7Fe+wueEs=", + "integrity": "sha256-Hv3T2mhutoeK16lpWmZ9f1pbKnJfu1GGc4nCiwBwJ4Q=", "output": "ptx", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ptx" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ptx", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ptx" ], "name": "cosmos-ptx" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6075,8 +6394,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6084,17 +6403,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-RdIwQz9MZ5PaDIT9y0AY3YZHKYA/tUm8ylYf5RD0S8U=", + "integrity": "sha256-beUdC7B+HkPJsGjf/isqDL3QQ1gwypLBf32EC2tKa5g=", "output": "pwd", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pwd" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pwd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pwd" ], "name": "cosmos-pwd" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6106,8 +6426,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6115,17 +6435,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-mb3fmOwEqmunaoKZahHdRh2K8OuOSHFQQIc8Yddppic=", + "integrity": "sha256-492wiVHg7chVDxUrir3pOrY1OZ/2h8uKBwfD4gtLJuM=", "output": "pypack1", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pypack1" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/pypack1", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/pypack1" ], "name": "cosmos-pypack1" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6137,8 +6458,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6146,17 +6467,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-RvuLtLNsExsN10Mipa/ewh1Qr95a0dpOOJ+j3BBht2g=", + "integrity": "sha256-CuebA8IWxuoYr9HjVgyMLqf0kx23/OGIcS/tAsvPm98=", "output": "python", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/python" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/python", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/python" ], "name": "cosmos-python" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6168,8 +6490,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6177,17 +6499,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-RmszlYwDkeSbX3xZ/0m/yQCgfbJNCflaQ0KHuz1lo/w=", + "integrity": "sha256-dgblh0J7T6VumjgCrL0PPJAUIzrqGFw9oqoYSO+g39o=", "output": "qjs", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/qjs" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/qjs", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/qjs" ], "name": "cosmos-qjs" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6199,8 +6522,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6208,17 +6531,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-3/0q9jntaXuBK5+3+FFiUHfnZhVsJILGRyw9C9jsDrM=", + "integrity": "sha256-n/FcF1jTFHmxvvh0UZeUbJOzse0mCIYEi7nFM0Wb2mg=", "output": "readlink", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/readlink" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/readlink", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/readlink" ], "name": "cosmos-readlink" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6230,8 +6554,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6239,17 +6563,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-+Wo9k1u/CGPqtTKgHDjdu6z7UraE444Ez82h69SIKm0=", + "integrity": "sha256-0SUHEaSMliLf0BRdXaEAUGbwAAKXEV8M7f/xnBmqPPE=", "output": "realpath", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/realpath" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/realpath", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/realpath" ], "name": "cosmos-realpath" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6261,8 +6586,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6270,17 +6595,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-+zB9iVZklOfgaynLhwQG1qTP+/xUZE2A2UyTTIz9iCk=", + "integrity": "sha256-b6+KyGmVKmo6iiSUuhRrkIMQ9Mnr8ZqZR64rxtg4BBE=", "output": "redbean", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/redbean" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/redbean", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/redbean" ], "name": "cosmos-redbean" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6292,8 +6618,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6301,17 +6627,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-olbEjveooS5XCXiLtsvXacsfR1l7AFndDB7XRLr3HwU=", + "integrity": "sha256-4yRCV2b4p4im2dCQka0gp7qbdbG0d5OmILbAErTEsF0=", "output": "rmdir", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rmdir" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rmdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rmdir" ], "name": "cosmos-rmdir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6323,8 +6650,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6332,17 +6659,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-bAJZ6fMDcOpiZ9eNiC/KySEoanb8ZnXL+LBgpOuc8s4=", + "integrity": "sha256-IpC+6WKlj7EqkYxNXXDdO7IaF1/jTItBvlSKr0MdNIk=", "output": "rsync", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rsync" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rsync", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rsync" ], "name": "cosmos-rsync" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6354,8 +6682,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6363,17 +6691,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-m+7V7IWXjMBts1GcBvTn9yLZrekeJ2PnTIZPDPqbHyg=", + "integrity": "sha256-y4OAxP6BQPy2+Rk4qFtStsBtiwOlZLlr30Un6Tt8B1k=", "output": "runcon", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/runcon" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/runcon", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/runcon" ], "name": "cosmos-runcon" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6385,8 +6714,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6394,17 +6723,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-gF6Ux0AVHv3VK3ynVCDfwWSzCzcM6tbYUtAEYkE/Lto=", + "integrity": "sha256-He3EhRTNYIFHfDShoR69EPZW7USl/7gSM1ZB0uk+ie4=", "output": "script", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/script" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/script", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/script" ], "name": "cosmos-script" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6416,8 +6746,40 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-V8rMT2LlnNJ5nQDA+HRVtYBWeoHFCko3lSoyJMo/UTE=", + "output": "sdiff", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sdiff", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sdiff" + ], + "name": "cosmos-sdiff" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-sdiff//:sdiff", + "name": "sdiff" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6425,17 +6787,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-mLD3mRX7R9we3IQpAZKC7c4mF2Nz7sG8s63Is0TkYcM=", + "integrity": "sha256-7z5mtxxjLL9ebC4V1cOpPjzArSxs1cIEsKizH4WPt3E=", "output": "sed", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sed" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sed", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sed" ], "name": "cosmos-sed" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6447,8 +6810,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6456,17 +6819,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-AkvogLBC9nwhq2rpaA1kL0Q4beb00QMrptcxpzXKjE0=", + "integrity": "sha256-OVOPZyBJJ9rcf1fnIU7ZvJuVTXN89cfXMGYGU1Es5Lo=", "output": "seq", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/seq" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/seq", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/seq" ], "name": "cosmos-seq" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6478,8 +6842,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6487,17 +6851,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-wDWmXDgJmeEuJUd5ER9ed1rGZRxJMwEe1uR7Jrm4r2o=", + "integrity": "sha256-2cL2GKl26qqr+FB3mKjhFPaIzPXCzxBiMfPOBYulFp0=", "output": "sha1sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha1sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sha1sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sha1sum" ], "name": "cosmos-sha1sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6509,8 +6874,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6518,17 +6883,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-DPOKHJa+e04UNJm0ptGNf79Qpvdf3OCbAlHKLPFq3oM=", + "integrity": "sha256-Dk9BKP17F/la+gPizCvGjtTqa6/tZT0gTrp1vrKInbo=", "output": "sha224sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha224sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sha224sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sha224sum" ], "name": "cosmos-sha224sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6540,8 +6906,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6549,17 +6915,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-BpxhJqv/rboyFhYy31eq5Ym3eriHcGRqOGDdmbWwAuw=", + "integrity": "sha256-WIplUCNmB7rMDb3/LvrqwoIHaNFw29Etvu6ivX2kCgE=", "output": "sha256sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha256sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sha256sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sha256sum" ], "name": "cosmos-sha256sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6571,8 +6938,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6580,17 +6947,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Ak4+xM3+eGqXyWVghrgtAo80Fgeo6iXd10+K7tOd5HE=", + "integrity": "sha256-nLx1jTqjwSnhWO6eK+heIWHuterKu3B04nYkrp9Shrk=", "output": "sha384sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha384sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sha384sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sha384sum" ], "name": "cosmos-sha384sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6602,8 +6970,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6611,17 +6979,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-qq4HW+6hZ26U/TiN50QPdd710RpiPDjhrG/XfILWxE0=", + "integrity": "sha256-y8UewGoBGDMfq2wKHFijVN+NtWKLWZDPOAVQBIA7mSA=", "output": "sha512sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha512sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sha512sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sha512sum" ], "name": "cosmos-sha512sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6633,8 +7002,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6642,17 +7011,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-7/edcRznrBT9DOKb05J39nRsjJ30LkH9Pz/5QUlsDH4=", + "integrity": "sha256-i8AEctRrGsvRs8Ly7XmK+XpgiZeQVVjIhQ7ie/Yy8yw=", "output": "shred", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shred" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/shred", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/shred" ], "name": "cosmos-shred" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6664,8 +7034,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6673,17 +7043,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-X1v5hF6yG2zM78Qg85wcENzihXXmMZnBTZNleRCscL4=", + "integrity": "sha256-WIdP7u66G/XFPDgyCpBihZBgijdeinfBDjARp1K8QXk=", "output": "shuf", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shuf" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/shuf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/shuf" ], "name": "cosmos-shuf" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6695,8 +7066,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6704,17 +7075,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-esGxinA9WyISgkcQ7sPIuC7B1SwQHMXmGTYHOhZvAx0=", + "integrity": "sha256-gtC/7PR5VvzgxL4FwBJ6VO6b0DN7uBYUc8oQcMeKHWY=", "output": "sleep", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sleep" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sleep", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sleep" ], "name": "cosmos-sleep" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6726,8 +7098,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6735,17 +7107,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Ar+SpUClNPT5OItQMiiYH7CBHnSoKHa1jjN32BjqMF4=", + "integrity": "sha256-nz0/ivLwTYtnvl4Xpl456rDfRickgpukdzdPFQy7Bu8=", "output": "sort", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sort" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sort", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sort" ], "name": "cosmos-sort" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6757,8 +7130,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6766,17 +7139,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-A5nEGoaZdJ5p1j3s54rgp8/BEoBVakaRE4YAqAMMZbQ=", + "integrity": "sha256-LKP1sD1cxx+lTlkcxXX2Ew1w3ywOeIoUgnLbZ8ase88=", "output": "split", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/split" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/split", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/split" ], "name": "cosmos-split" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6788,8 +7162,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6797,17 +7171,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-IICFVnTkqMZ/c5PPtIStX89WtBnsmIg3z1qfFJEOXlE=", + "integrity": "sha256-MMV+VsI6iwk1U5gATzJEfKqFTRLcNjE6r0TSAmT/3O8=", "output": "sqlite3", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sqlite3" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sqlite3", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sqlite3" ], "name": "cosmos-sqlite3" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6819,8 +7194,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6828,17 +7203,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KO2xc+Vf2HdfUZPh2ItTxfun5CwFNsPQArjJ22fw/a8=", + "integrity": "sha256-VX1GgQICdH2+F5mmYc4WI7G4OT5FFI+Zy3fRw45aypU=", "output": "stat", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stat" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/stat", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/stat" ], "name": "cosmos-stat" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6850,8 +7226,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6859,17 +7235,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-S2BXpqZxSI493gq3piyCqH3dwE+yxvvAL1WWxRVd844=", + "integrity": "sha256-pBDYJV6K2WuiZTqTkHusvezMBwuf9WeBKOYA/CVyuUI=", "output": "stty", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stty" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/stty", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/stty" ], "name": "cosmos-stty" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6881,8 +7258,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6890,17 +7267,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Uoro6aH+YK1IIBditsXeyXhwAlR9vqLnLOQ9K8PRSuM=", + "integrity": "sha256-V4E8YCCny/DfQ6vaSupDsQpEF8eF265jIVKiffjExD8=", "output": "sum", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sum" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sum", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sum" ], "name": "cosmos-sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6912,8 +7290,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6921,17 +7299,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-1iFwSaaAXI3pdNdfrMI9PychzSGJhy0UpDCDTwCn8/U=", + "integrity": "sha256-92eEiTPpnGEmb1ECuvSXMrAjY+mv/DPP7SMEokOIWNs=", "output": "sync", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sync" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sync", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sync" ], "name": "cosmos-sync" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6943,8 +7322,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6952,17 +7331,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-RG/VXzGH2MSwHLSQIG61wDmoNR5xYch3+xNbtDUROB4=", + "integrity": "sha256-wCJO+G4bdaTYMzOhZK0CqJbb1fEOmUTAgUrs/yKUi1c=", "output": "tac", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tac" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tac", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tac" ], "name": "cosmos-tac" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -6974,8 +7354,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -6983,17 +7363,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-hdbjryLVn6c7MR/XX/UhaOS7+QKLYhrJUo+DsE3Xz/E=", + "integrity": "sha256-25wCKN+CWbZI7/zvmviGlkz4MN6R+mhScVo+BonuDy0=", "output": "tail", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tail" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tail", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tail" ], "name": "cosmos-tail" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7005,8 +7386,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7014,17 +7395,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-bK1q+UwoTLgbDi6UeY20FCH3MtJaoRpWV3DHd2U7Mbw=", + "integrity": "sha256-veeG74pMzsCwry2oKhbXtrODNLikp7S0Wv98vaAgTlE=", "output": "tar", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tar" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tar", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tar" ], "name": "cosmos-tar" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7036,8 +7418,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7045,17 +7427,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-TJTxJe2mWPIizG4s3vwgg3wrKjew5E+1wGKRrtx+el4=", + "integrity": "sha256-9nv7tmm8AZfZEIflRNwZz01qDR32aMkbAfhBQTxSgZs=", "output": "tee", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tee" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tee", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tee" ], "name": "cosmos-tee" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7067,8 +7450,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7076,17 +7459,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-djzefI/wv2XCnNfvFpjfTIJVly06qkSAsV4BoV0gUEo=", + "integrity": "sha256-njjQ967LtdtyVIr2LHLwNZcDjCh1ehqjf4vd4qs1xOY=", "output": "test", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/test" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/test", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/test" ], "name": "cosmos-test" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7098,8 +7482,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7107,17 +7491,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-20zyJkRs1n5tzbPTbXPfAt9CaVDsbpGZws8bddOY16E=", + "integrity": "sha256-lDaweZcW7rqo3azvmyGRNoIFwH6QfBX9hTtV5XgZMkc=", "output": "tidy", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tidy" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tidy", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tidy" ], "name": "cosmos-tidy" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7129,8 +7514,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7138,17 +7523,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-aasJBcTgrDU0Xs4V4UkUW8Wsle1EdXnPdf0Fymw0Fpc=", + "integrity": "sha256-/05So3XYe6Q1ZaLlg3CkexkMWeePhlCnfiN3FWj40q8=", "output": "timeout", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/timeout" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/timeout", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/timeout" ], "name": "cosmos-timeout" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7160,8 +7546,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7169,17 +7555,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZbW548NXsKv7puCJc+hHvF2hpYI7MQvZc//FAH7oTUI=", + "integrity": "sha256-8bdRHrTHAxbBe3jxvDWasMBTt9B/z/I25PZ/7BX8GlI=", "output": "tmux", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tmux" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tmux", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tmux" ], "name": "cosmos-tmux" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7191,8 +7578,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7200,17 +7587,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Qtxc3zlOZg2B3dXeUABQUcyFdjFCV6WPVQUr8DQP1qk=", + "integrity": "sha256-zhFuIvzfkzMi3FTIOumqd4GtGEVJpP/wBeU7/homOPI=", "output": "touch", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/touch" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/touch", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/touch" ], "name": "cosmos-touch" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7222,8 +7610,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7231,17 +7619,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-1l1OkCTePV8SDxVQyoTtvK0fHCR9Hf+ebHGh5gEriyY=", + "integrity": "sha256-IiVcClTzSTp1JmNOHSlcIayZvNHbVY42DnAE8/0Qesc=", "output": "tr", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tr" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tr", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tr" ], "name": "cosmos-tr" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7253,8 +7642,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7262,17 +7651,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-B0m9Z2PoklikdfkbU1QyFsjlFkVzUemLSGmQTC/OL5I=", + "integrity": "sha256-cQ8mhq2xdF49vJUc7FloZUswVn72LJDTgxqtRoKCsiw=", "output": "tree", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tree" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tree", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tree" ], "name": "cosmos-tree" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7284,8 +7674,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7293,17 +7683,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Cp9RvWCvc8NmfZbMhdDz38cA8YJDVRswENEggHgEoVY=", + "integrity": "sha256-hYaiwy4ndHtQVXkue5IZqX6eGTEIG5hF9dFiJNwy0hE=", "output": "true", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/true" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/true", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/true" ], "name": "cosmos-true" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7315,8 +7706,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7324,17 +7715,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-/u7bZBCAYeEeEeST5/9z3pmy6bgP0FAGUaUOED/Rppo=", + "integrity": "sha256-WBM53lBcudr5o7aZXSFtGMAtTDOiTO5mzJXu93LKD30=", "output": "truncate", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/truncate" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/truncate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/truncate" ], "name": "cosmos-truncate" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7346,8 +7738,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7355,17 +7747,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-uTgUXY/AU+WyqjwbCR5AS8O7wzN5pROWV1Jp0hmpykc=", + "integrity": "sha256-UpSUFlDED5YslxGn5tffiVOo+wXCkrHIcxn01I4h15s=", "output": "tsort", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tsort" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tsort", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tsort" ], "name": "cosmos-tsort" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7377,8 +7770,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7386,17 +7779,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-q7ACSLuBRoj8S/6SACtld7x6LC/HbxTjGeY7vu/8ENg=", + "integrity": "sha256-yzZVpirempT1e3VfLqW/wh73Wg/MO9liJDJLRFqzOmE=", "output": "tty", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tty" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/tty", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/tty" ], "name": "cosmos-tty" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7408,8 +7802,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7417,17 +7811,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-30KPzAvNZ0hGPsi+hFXWgEQhItcB1bvRNJY+cokdcTo=", + "integrity": "sha256-80TSpREUXO5RJzkGhTYbDL1r31/JdiQ/9bojc0SJL5w=", "output": "ttyinfo", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ttyinfo" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/ttyinfo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/ttyinfo" ], "name": "cosmos-ttyinfo" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7439,8 +7834,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7448,17 +7843,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Q7/iZUHTlmCUQN6rw8cg7V+tb2A8RCDOnRfR9TZoMq4=", + "integrity": "sha256-nXUhnAnJZE2ibUTpzuPRuo3ZStSR5YsizSyzPvleEEg=", "output": "unbourne", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unbourne" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/unbourne", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/unbourne" ], "name": "cosmos-unbourne" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7470,8 +7866,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7479,17 +7875,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-1aCgwxoQk7SzJXBlADz3cf/V2vMMcys0MQ3fwaICx2U=", + "integrity": "sha256-SyirSgmXz8cG1TAs5tZHbTIUEup4TobeFXKHUn8g1d0=", "output": "unexpand", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unexpand" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/unexpand", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/unexpand" ], "name": "cosmos-unexpand" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7501,8 +7898,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7510,17 +7907,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-A6UVJI2TAChs4PaCnCbjOYK74QvhoPef+7iVhgV4urA=", + "integrity": "sha256-bRyARZw39jAZXgyGVm63r2V7r+xT3L4d90kAYVlDAZY=", "output": "uniq", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uniq" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uniq", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uniq" ], "name": "cosmos-uniq" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7532,8 +7930,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7541,17 +7939,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-utJGVV1+wC3tQEdJ9kvr1c17Co2ljegM/+0ASl1WlUQ=", + "integrity": "sha256-W4J4XLYs4yyT+7872Fv8RbOYtAlN62r4fXU83EXYZE0=", "output": "unlink", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unlink" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/unlink", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/unlink" ], "name": "cosmos-unlink" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7563,8 +7962,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7572,17 +7971,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-CuORPmGI+lGcTM34owoLe6NA5O3sO2z6s/u32+52Ay8=", + "integrity": "sha256-QDT5UL43QhBK1pdJvCJdpyTMkxWQPD57wAkCziGcYP4=", "output": "unzip", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unzip" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/unzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/unzip" ], "name": "cosmos-unzip" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7594,8 +7994,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7603,17 +8003,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-m/S29ntFqzWNnInIxt6M+G0bXQVRRJullJ6+Cn0t5FM=", + "integrity": "sha256-faDcCqiIAUWbsKqZdtVDIRgvV5NCmEGT8qxMzR6lGOg=", "output": "uptime", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uptime" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uptime", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uptime" ], "name": "cosmos-uptime" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7625,8 +8026,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7634,17 +8035,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-i5UF16OR/uwcu/Zawzk0Qnj8ng5gKbwWcJQ075HRT/Y=", + "integrity": "sha256-isx4kM5na0c1MAcDdCcTnEIVB1HBCFKy757f47UD4tA=", "output": "users", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/users" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/users", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/users" ], "name": "cosmos-users" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7656,8 +8058,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7665,17 +8067,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-iXYsmmp973x1uSnX+4na5G8sHJ5K4Y9en1GX1h8w/Xc=", + "integrity": "sha256-fQcjUl1QVmkQ4oyDkiKx/y2V+r5BDMU1oFf3w/l+tmc=", "output": "vdir", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vdir" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/vdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/vdir" ], "name": "cosmos-vdir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7687,8 +8090,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7696,17 +8099,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-49xc858RJTKnORI8VR/qm+rWmw8685O40dyO3xA9MX4=", + "integrity": "sha256-S5D4PmAPPZ1WmQZmCAWFuIt3XdUHQoL9++LV7VTYtvI=", "output": "verynice", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/verynice" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/verynice", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/verynice" ], "name": "cosmos-verynice" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7718,8 +8122,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7727,17 +8131,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-wf8JV2UJG15mrkruoVW5mCYRziO5+mYtoinHR/MH88o=", + "integrity": "sha256-onKJ/dqER14qtN3DMg7U0kU9EE1qvy+d4NyDl27tdUY=", "output": "vim", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vim" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/vim", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/vim" ], "name": "cosmos-vim" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7749,8 +8154,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7758,17 +8163,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-yPDUoIdP/jcggElRwyiHqkS89gnVDzBzkCNwJfe8E9U=", + "integrity": "sha256-Fx/k6dM6iCdaKuC56Q2QoxhMcC0LaHacZRfT+EWTHHA=", "output": "wall", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wall" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/wall", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/wall" ], "name": "cosmos-wall" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7780,8 +8186,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7789,17 +8195,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-0QcoEnBZYML3zxx+8F5OywXn5KlJ2put3tVTtenRivU=", + "integrity": "sha256-XRpXEGIZ/9Ow5IrHP+dbo5dc1hHqKZ1ewqJLM1CX9bg=", "output": "wc", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wc" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/wc", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/wc" ], "name": "cosmos-wc" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7811,8 +8218,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7820,17 +8227,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Cc6S4q1wHliGSWDZl2WVxDz+9YEdum6tFA7PLvw/UII=", + "integrity": "sha256-CHZFKvpbmc5AmpkazKk0H0MeYE8wTl7aANjbU9NKDb0=", "output": "wget", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wget" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/wget", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/wget" ], "name": "cosmos-wget" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7842,8 +8250,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7851,17 +8259,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-f/7aVNcB5lYIhOpfxiqch8S22b+nI25TrI2C2bSKXI8=", + "integrity": "sha256-W+CBIPsR2NBc6xXbom6zyzNCvHKmE+py/iGlX5ewNok=", "output": "who", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/who" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/who", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/who" ], "name": "cosmos-who" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7873,8 +8282,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7882,17 +8291,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-71b9T2z17+0j8711Eyw1rWrrTBv39cIgqEk85KlWSXw=", + "integrity": "sha256-yjAXVvBgVSkLRpNve2AC9srTCSdieNLjh63wFpgxM88=", "output": "whoami", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/whoami" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/whoami", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/whoami" ], "name": "cosmos-whoami" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7904,8 +8314,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7913,17 +8323,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-bP3uyxPEzbL5QeMJCTtvQPrhpiXut+iHTTeGuOCpNJg=", + "integrity": "sha256-A34zn2hiDh2xMdPY82s1ghm/xzDUEXqxy6IVqOJv9vY=", "output": "xargs", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xargs" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/xargs", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/xargs" ], "name": "cosmos-xargs" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7935,8 +8346,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7944,17 +8355,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-gTBKAnJyqP88kGYtlkZcdldoFU2J6VtcQCtfXfhrJDE=", + "integrity": "sha256-84VVLEvkMFVKsNTKX8IZ90XAqebHofJ4bsy3J3f+Xe0=", "output": "xz", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xz" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/xz", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/xz" ], "name": "cosmos-xz" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7966,8 +8378,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -7975,17 +8387,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZGiA91He1rL0kZKHXUUH8qWmaLly/3QxtKO0R8avkbA=", + "integrity": "sha256-J+N2zXEIyM9SF5Xqmpye6hISJi40Xj8343AQUL9jOiI=", "output": "yes", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/yes" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/yes", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/yes" ], "name": "cosmos-yes" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -7997,8 +8410,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -8006,17 +8419,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-Pba62aWW0gpT1wJK8Aa7HWwf3foaXnEUMxkfN8pZ01E=", + "integrity": "sha256-hxobwz7sl7w+NmS45mBoFd0sVSQ3haPeoPW5S7WBUN8=", "output": "zip", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zip" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/zip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/zip" ], "name": "cosmos-zip" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -8028,8 +8442,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -8037,17 +8451,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-JKePwqxk9+6vQbRdaGA/nZg0hNBn40mE3sKY1ftzxtQ=", + "integrity": "sha256-zYH33XZzUvk6v5DiLKe5lKTKx0IsRW7zJWIeQmhM0f4=", "output": "zsh", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zsh" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/zsh", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/zsh" ], "name": "cosmos-zsh" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -8059,8 +8474,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -8068,17 +8483,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-NBtbg/4vD4sgHfqxK9DiUzdtJgu3+lER8GYZ8irR40E=", + "integrity": "sha256-UQRCbSiHGWmBr2qsbnsCGQjIyhZG2ilfx9Iyxv6KbzQ=", "output": "zstd", "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zstd" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/zstd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/zstd" ], "name": "cosmos-zstd" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -8090,92 +8506,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/archive:defs.bzl%download_archive", - "attributeValues": { - "srcs": [ - "bin/*" - ], - "integrity": "sha256-ky+wwBWUS38eUFu5O3q/w7S2l7UGSJEDZAuYLmKGjc8=", - "urls": [ - "https://github.com/ahgamut/superconfigure/releases/download/z0.0.33/cli.zip" - ], - "name": "cli" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 224, - "column": 17 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/diff", - "name": "diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/diff3", - "name": "diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/sdiff", - "name": "sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/cmp", - "name": "cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/patch", - "name": "patch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } } @@ -8186,10 +8518,10 @@ { "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-alpha.3", + "usingModule": "ape@1.0.0-beta.4", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 50, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 109, "column": 23 }, "imports": {}, @@ -8203,8 +8535,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8216,8 +8548,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8229,8 +8561,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8242,8 +8574,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8255,8 +8587,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8268,8 +8600,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8281,8 +8613,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8294,8 +8626,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8307,8 +8639,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8320,8 +8652,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8333,8 +8665,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8346,8 +8678,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8359,8 +8691,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8372,8 +8704,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8385,8 +8717,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8398,8 +8730,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8411,8 +8743,21 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-cmp", + "target": "@cmp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8424,8 +8769,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8437,8 +8782,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8450,8 +8795,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8463,8 +8808,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8476,8 +8821,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8489,8 +8834,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8502,8 +8847,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8515,8 +8860,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8528,8 +8873,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8541,8 +8886,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8554,8 +8899,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8567,8 +8912,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8580,8 +8925,34 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-diff", + "target": "@diff" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-diff3", + "target": "@diff3" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8593,8 +8964,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8606,8 +8977,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8619,8 +8990,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8632,8 +9003,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8645,8 +9016,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8658,8 +9029,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8671,8 +9042,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8684,8 +9055,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8697,8 +9068,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8710,8 +9081,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8723,8 +9094,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8736,8 +9107,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8749,8 +9120,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8762,8 +9133,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8775,8 +9146,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8788,8 +9159,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8801,8 +9172,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8814,8 +9185,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8827,8 +9198,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8840,8 +9211,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8853,8 +9224,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8866,8 +9237,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8879,8 +9250,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8892,8 +9263,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8905,8 +9276,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8918,8 +9289,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8931,8 +9302,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8944,8 +9315,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8957,8 +9328,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8970,8 +9341,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8983,8 +9354,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -8996,8 +9367,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9009,8 +9380,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9022,8 +9393,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9035,8 +9406,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9048,8 +9419,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9061,8 +9432,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9074,8 +9445,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9087,8 +9458,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9100,8 +9471,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9113,8 +9484,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9126,8 +9497,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9139,8 +9510,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9152,8 +9523,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9165,8 +9536,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9178,8 +9549,21 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-patch", + "target": "@patch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9191,8 +9575,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9204,8 +9588,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9217,8 +9601,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9230,8 +9614,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9243,8 +9627,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9256,8 +9640,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9269,8 +9653,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9282,8 +9666,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9295,8 +9679,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9308,8 +9692,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9321,8 +9705,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9334,8 +9718,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9347,8 +9731,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9360,8 +9744,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9373,8 +9757,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9386,8 +9770,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9399,8 +9783,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9412,8 +9796,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9425,8 +9809,21 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-sdiff", + "target": "@sdiff" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9438,8 +9835,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9451,8 +9848,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9464,8 +9861,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9477,8 +9874,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9490,8 +9887,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9503,8 +9900,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9516,8 +9913,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9529,8 +9926,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9542,8 +9939,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9555,8 +9952,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9568,8 +9965,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9581,8 +9978,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9594,8 +9991,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9607,8 +10004,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9620,8 +10017,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9633,8 +10030,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9646,8 +10043,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9659,8 +10056,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9672,8 +10069,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9685,8 +10082,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9698,8 +10095,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9711,8 +10108,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9724,8 +10121,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9737,8 +10134,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9750,8 +10147,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9763,8 +10160,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9776,8 +10173,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9789,8 +10186,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9802,8 +10199,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9815,8 +10212,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9828,8 +10225,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9841,8 +10238,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9854,8 +10251,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9867,8 +10264,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9880,8 +10277,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9893,8 +10290,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9906,8 +10303,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9919,8 +10316,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9932,8 +10329,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9945,8 +10342,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9958,8 +10355,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9971,8 +10368,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9984,8 +10381,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -9997,8 +10394,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10010,8 +10407,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10023,8 +10420,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10036,8 +10433,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10049,8 +10446,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10062,8 +10459,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10075,8 +10472,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10088,8 +10485,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10101,8 +10498,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10114,8 +10511,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } }, @@ -10127,73 +10524,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-diff", - "target": "@diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-diff3", - "target": "@diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sdiff", - "target": "@sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cmp", - "target": "@cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-patch", - "target": "@patch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 127, "column": 23 } } @@ -10203,7 +10535,7 @@ } ], "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", + "toolchain_utils": "toolchain_utils@1.0.0-beta.6", "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -10213,10 +10545,37 @@ "ruleClassName": "http_archive", "attributes": { "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-alpha.3/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.4/downloads/src.tar.gz" + ], + "integrity": "sha512-3qhOHBqfEGQOlf0v9IZQyJmMtw25DaZhK+EMTydPuDvsI9H6chtg8ZXg+pnJihbbzhptVI8NXPKZ3iiYIwSgOw==", + "strip_prefix": "ape-v1.0.0-beta.4", + "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": { + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" ], - "integrity": "sha512-JdEQJfZEAFr6S17FHuuLNU/59advG/bsj0d+RkwR0yzKg3vCX0fG9IQpslyTzL5lmNl7ieYRxGm8wktUykdZWw==", - "strip_prefix": "ape-v1.0.0-alpha.3", + "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", + "strip_prefix": "", "remote_patches": {}, "remote_patch_strip": 0 } @@ -10600,33 +10959,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": { - "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@21.7": { "name": "protobuf", "version": "21.7", @@ -11606,1130 +11938,6 @@ ] ] } - }, - "@@toolchain_utils~//toolchain/export:defs.bzl%toolchain_export": { - "general": { - "bzlTransitiveDigest": "n2fd+/jiAv/nvvi2WUR+VQxI3aTZGNuhuX/NuFhw5fM=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "ape-pledge": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pledge//:pledge" - } - }, - "ape-basenc": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~basenc//:basenc" - } - }, - "ape-pwd": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pwd//:pwd" - } - }, - "ape-xargs": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~xargs//:xargs" - } - }, - "ape-md5sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~md5sum//:md5sum" - } - }, - "ape-cut": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~cut//:cut" - } - }, - "ape-date": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~date//:date" - } - }, - "ape-nl": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nl//:nl" - } - }, - "ape-expand": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~expand//:expand" - } - }, - "ape-ttyinfo": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ttyinfo//:ttyinfo" - } - }, - "ape-verynice": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~verynice//:verynice" - } - }, - "ape-cmp": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~cmp//:cmp" - } - }, - "ape-dirname": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~dirname//:dirname" - } - }, - "ape-sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sum//:sum" - } - }, - "ape-unexpand": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~unexpand//:unexpand" - } - }, - "ape-sdiff": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sdiff//:sdiff" - } - }, - "ape-pigz": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pigz//:pigz" - } - }, - "ape-nano": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nano//:nano" - } - }, - "ape-zsh": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~zsh//:zsh" - } - }, - "ape-datasette": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~datasette//:datasette" - } - }, - "ape-sha384sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sha384sum//:sha384sum" - } - }, - "ape-dircolors": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~dircolors//:dircolors" - } - }, - "ape-rsync": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~rsync//:rsync" - } - }, - "ape-sed": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sed//:sed" - } - }, - "ape-sha512sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sha512sum//:sha512sum" - } - }, - "ape-nproc": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nproc//:nproc" - } - }, - "ape-find": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~find//:find" - } - }, - "ape-pinky": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pinky//:pinky" - } - }, - "ape-mktemp": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~mktemp//:mktemp" - } - }, - "ape-bash": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~bash//:bash" - } - }, - "ape-mkfifo": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~mkfifo//:mkfifo" - } - }, - "ape-tmux": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tmux//:tmux" - } - }, - "ape-users": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~users//:users" - } - }, - "ape-head": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~head//:head" - } - }, - "ape-seq": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~seq//:seq" - } - }, - "diff": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@toolchain_utils~~toolchain_export~ape-diff//:ape-diff" - } - }, - "ape-printenv": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~printenv//:printenv" - } - }, - "ape-lz4": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~lz4//:lz4" - } - }, - "ape-sqlite3": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sqlite3//:sqlite3" - } - }, - "ape-od": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~od//:od" - } - }, - "ape-tsort": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tsort//:tsort" - } - }, - "ape-chcon": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~chcon//:chcon" - } - }, - "ape-shred": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~shred//:shred" - } - }, - "ape-tidy": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tidy//:tidy" - } - }, - "ape-wall": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~wall//:wall" - } - }, - "ape-split": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~split//:split" - } - }, - "ape-berry": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~berry//:berry" - } - }, - "ape-groups": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~groups//:groups" - } - }, - "ape-base64": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~base64//:base64" - } - }, - "ape-grep": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~grep//:grep" - } - }, - "ape-wc": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~wc//:wc" - } - }, - "ape-chown": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~chown//:chown" - } - }, - "ape-ctags": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ctags//:ctags" - } - }, - "ape-locate": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~locate//:locate" - } - }, - "ape-ls": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ls//:ls" - } - }, - "ape-factor": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~factor//:factor" - } - }, - "ape-life": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~life//:life" - } - }, - "ape-expr": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~expr//:expr" - } - }, - "ape-link": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~link//:link" - } - }, - "ape-ninja": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ninja//:ninja" - } - }, - "ape-qjs": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~qjs//:qjs" - } - }, - "cmp": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@toolchain_utils~~toolchain_export~ape-cmp//:ape-cmp" - } - }, - "ape-df": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~df//:df" - } - }, - "ape-ln": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ln//:ln" - } - }, - "ape-b2sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~b2sum//:b2sum" - } - }, - "ape-tr": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tr//:tr" - } - }, - "ape-unlink": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~unlink//:unlink" - } - }, - "ape-diff": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~diff//:diff" - } - }, - "ape-unbourne": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~unbourne//:unbourne" - } - }, - "ape-dir": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~dir//:dir" - } - }, - "ape-fmt": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~fmt//:fmt" - } - }, - "ape-fold": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~fold//:fold" - } - }, - "ape-make": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~make//:make" - } - }, - "ape-mktemper": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~mktemper//:mktemper" - } - }, - "ape-base32": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~base32//:base32" - } - }, - "ape-chgrp": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~chgrp//:chgrp" - } - }, - "ape-tac": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tac//:tac" - } - }, - "ape-touch": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~touch//:touch" - } - }, - "ape-python": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~python//:python" - } - }, - "ape-uptime": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~uptime//:uptime" - } - }, - "ape-clang-format": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~clang-format//:clang-format" - } - }, - "ape-comm": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~comm//:comm" - } - }, - "ape-tar": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tar//:tar" - } - }, - "ape-false": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~false//:false" - } - }, - "ape-rmdir": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~rmdir//:rmdir" - } - }, - "ape-paste": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~paste//:paste" - } - }, - "ape-du": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~du//:du" - } - }, - "ape-links": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~links//:links" - } - }, - "ape-nohup": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nohup//:nohup" - } - }, - "sdiff": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@toolchain_utils~~toolchain_export~ape-sdiff//:ape-sdiff" - } - }, - "diff3": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@toolchain_utils~~toolchain_export~ape-diff3//:ape-diff3" - } - }, - "ape-basename": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~basename//:basename" - } - }, - "ape-sha256sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sha256sum//:sha256sum" - } - }, - "ape-greenbean": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~greenbean//:greenbean" - } - }, - "ape-who": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~who//:who" - } - }, - "ape-curl": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~curl//:curl" - } - }, - "ape-join": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~join//:join" - } - }, - "ape-printimage": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~printimage//:printimage" - } - }, - "ape-diff3": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~diff3//:diff3" - } - }, - "ape-pathchk": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pathchk//:pathchk" - } - }, - "ape-script": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~script//:script" - } - }, - "ape-cat": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~cat//:cat" - } - }, - "ape-emacs": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~emacs//:emacs" - } - }, - "ape-csplit": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~csplit//:csplit" - } - }, - "ape-kill": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~kill//:kill" - } - }, - "ape-emacsclient": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~emacsclient//:emacsclient" - } - }, - "ape-nice": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nice//:nice" - } - }, - "ape-timeout": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~timeout//:timeout" - } - }, - "ape-chroot": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~chroot//:chroot" - } - }, - "ape-mknod": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~mknod//:mknod" - } - }, - "ape-sha224sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sha224sum//:sha224sum" - } - }, - "ape-yes": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~yes//:yes" - } - }, - "ape-gmake": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~gmake//:gmake" - } - }, - "ape-numfmt": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~numfmt//:numfmt" - } - }, - "ape-tail": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tail//:tail" - } - }, - "ape-bzip2": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~bzip2//:bzip2" - } - }, - "ape-env": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~env//:env" - } - }, - "ape-vdir": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~vdir//:vdir" - } - }, - "ape-patch": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~patch//:patch" - } - }, - "ape-realpath": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~realpath//:realpath" - } - }, - "ape-ptx": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~ptx//:ptx" - } - }, - "ape-awk": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~awk//:awk" - } - }, - "ape-stat": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~stat//:stat" - } - }, - "ape-brotli": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~brotli//:brotli" - } - }, - "ape-lua": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~lua//:lua" - } - }, - "ape-nesemu1": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~nesemu1//:nesemu1" - } - }, - "ape-wget": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~wget//:wget" - } - }, - "ape-tty": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tty//:tty" - } - }, - "ape-unzip": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~unzip//:unzip" - } - }, - "ape-pr": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pr//:pr" - } - }, - "ape-whoami": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~whoami//:whoami" - } - }, - "ape-xz": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~xz//:xz" - } - }, - "ape-uniq": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~uniq//:uniq" - } - }, - "coreutils": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@rules_coreutils~~_repo_rules~coreutils//:coreutils" - } - }, - "ape-readlink": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~readlink//:readlink" - } - }, - "ape-zstd": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~zstd//:zstd" - } - }, - "ape-cksum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~cksum//:cksum" - } - }, - "ape-tee": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tee//:tee" - } - }, - "ape-sha1sum": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sha1sum//:sha1sum" - } - }, - "ape-logname": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~logname//:logname" - } - }, - "ape-sort": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sort//:sort" - } - }, - "ape-tree": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~tree//:tree" - } - }, - "ape-less": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~less//:less" - } - }, - "ape-vim": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~vim//:vim" - } - }, - "ape-dash": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~dash//:dash" - } - }, - "ape-redbean": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~redbean//:redbean" - } - }, - "ape-sync": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sync//:sync" - } - }, - "ape-install": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~install//:install" - } - }, - "ape-shuf": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~shuf//:shuf" - } - }, - "ape-stty": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~stty//:stty" - } - }, - "ape-zip": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~zip//:zip" - } - }, - "ape-id": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~id//:id" - } - }, - "ape-truncate": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~truncate//:truncate" - } - }, - "ape-runcon": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~runcon//:runcon" - } - }, - "ape-true": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~true//:true" - } - }, - "ape-pypack1": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~pypack1//:pypack1" - } - }, - "ape-cpuid": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~cpuid//:cpuid" - } - }, - "ape-sleep": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~sleep//:sleep" - } - }, - "ape-test": { - "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "target": "@@ape~~_repo_rules~test//:test" - } - } - }, - "recordedRepoMappingEntries": [] - } } } }