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 c1135d30fccacb80c7cd62b8993e3891c3e3314f..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.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/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 4c96ef406058c0b1849d283f5ba5b7f051bd7d7a..975a3f08751f69cfffbc943a0c987be5e6a06135 100644 --- a/e2e/MODULE.bazel +++ b/e2e/MODULE.bazel @@ -5,7 +5,7 @@ module( ], ) -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 = "bazel_skylib", version = "1.4.2") bazel_dep(name = "toolchain_utils", version = "0.0.0") local_path_override( diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index 50976cd38165af0aef207df66bbb019244bd59fc..e5ee81bbd228c3c890620999e3de4fd89022248e 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 6, - "moduleFileHash": "1c0376cff26f40c4e0d5f5d348c8ac14282bd88181df2b5549efafe92187ff16", + "moduleFileHash": "b29b5b3fedda18e588bbbed7652649b7f2083a8f1c8e810095cd6ada31042882", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -230,17 +230,17 @@ } ], "deps": { - "rules_diff": "rules_diff@1.0.0-alpha.3", + "rules_diff": "rules_diff@1.0.0-beta.2", "bazel_skylib": "bazel_skylib@1.4.2", "toolchain_utils": "toolchain_utils@_", "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": [ @@ -250,9 +250,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 }, @@ -276,7 +276,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 } @@ -289,7 +289,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 } @@ -302,7 +302,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 } @@ -315,7 +315,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 } @@ -327,9 +327,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 }, @@ -349,7 +349,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 } @@ -362,7 +362,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 } @@ -375,7 +375,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 } @@ -388,7 +388,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 } @@ -400,7 +400,7 @@ ], "deps": { "toolchain_utils": "toolchain_utils@_", - "ape": "ape@1.0.0-alpha.3", + "ape": "ape@1.0.0-beta.4", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -409,10 +409,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/rules_diff/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" ], - "integrity": "sha512-g8eVWXWcRpkiWjxs54Zua9tjdX/mTZV2yWslBrFqftvHDaCLxJQ1uXb4fRqC3pM1XKFouelMkviYZSMJaVAT8w==", - "strip_prefix": "rules_diff-v1.0.0-alpha.3", + "integrity": "sha512-ZAfkUE0c7Ax2EuM1vvl8w5YzWovrrz8OhKRXEr6RyRwteDLBOXTd3OPdMO0Vk0VTZ558xDJfstxP5OZpHHm3xw==", + "strip_prefix": "rules_diff-v1.0.0-beta.2", "remote_patches": {}, "remote_patch_strip": 0 } @@ -672,29 +672,36 @@ "bazel_tools": "bazel_tools@_" } }, - "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", @@ -729,6 +736,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", @@ -755,6 +764,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", @@ -847,6 +860,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", @@ -885,6 +900,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", @@ -992,16 +1009,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": { @@ -1009,14 +1096,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 } }, @@ -1027,14 +1115,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 } }, @@ -1045,14 +1134,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 } }, @@ -1063,8 +1153,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 } }, @@ -1075,32 +1165,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 } }, @@ -1112,8 +1217,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 } }, @@ -1121,17 +1226,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 } }, @@ -1143,8 +1249,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 } }, @@ -1152,17 +1258,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 } }, @@ -1174,8 +1281,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 } }, @@ -1183,17 +1290,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 } }, @@ -1205,8 +1313,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 } }, @@ -1214,17 +1322,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 } }, @@ -1236,8 +1345,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 } }, @@ -1245,17 +1354,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 } }, @@ -1267,8 +1377,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 } }, @@ -1276,17 +1386,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 } }, @@ -1298,8 +1409,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 } }, @@ -1307,17 +1418,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 } }, @@ -1329,8 +1441,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 } }, @@ -1338,17 +1450,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 } }, @@ -1360,8 +1473,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 } }, @@ -1369,17 +1482,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 } }, @@ -1391,8 +1505,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 } }, @@ -1400,17 +1514,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 } }, @@ -1422,8 +1537,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 } }, @@ -1431,17 +1546,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 } }, @@ -1453,8 +1569,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 } }, @@ -1462,17 +1578,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 } }, @@ -1484,8 +1601,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 } }, @@ -1493,17 +1610,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 } }, @@ -1515,8 +1633,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 } }, @@ -1524,17 +1642,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 } }, @@ -1546,8 +1665,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 } }, @@ -1555,17 +1674,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 } }, @@ -1577,8 +1697,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 } }, @@ -1589,14 +1709,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 } }, @@ -1608,8 +1729,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 } }, @@ -1617,17 +1770,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 } }, @@ -1639,8 +1793,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 } }, @@ -1648,17 +1802,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 } }, @@ -1670,8 +1825,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 } }, @@ -1679,17 +1834,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 } }, @@ -1701,8 +1857,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 } }, @@ -1710,17 +1866,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 } }, @@ -1732,8 +1889,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 } }, @@ -1741,17 +1898,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 } }, @@ -1763,8 +1921,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 } }, @@ -1772,17 +1930,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 } }, @@ -1794,8 +1953,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 } }, @@ -1803,17 +1962,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 } }, @@ -1825,8 +1985,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 } }, @@ -1834,17 +1994,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 } }, @@ -1856,8 +2017,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 } }, @@ -1865,17 +2026,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 } }, @@ -1887,8 +2049,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 } }, @@ -1896,17 +2058,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 } }, @@ -1918,8 +2081,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 } }, @@ -1927,17 +2090,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 } }, @@ -1949,8 +2113,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 } }, @@ -1958,17 +2122,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 } }, @@ -1980,8 +2145,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 } }, @@ -1989,17 +2154,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 } }, @@ -2011,8 +2177,72 @@ }, "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-1ZQPcT1/LLFKJRq8K1S7sICi4VumBRAt6FSVKejBDek=", + "output": "diff", + "urls": [ + "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-diff" + }, + "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-diff//:diff", + "name": "diff" + }, + "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-ncg5o4aApr13g34awJ1oI4zfr9WqTq4JKCkwBXbWmF4=", + "output": "diff3", + "urls": [ + "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-diff3" + }, + "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-diff3//:diff3", + "name": "diff3" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 123, "column": 23 } }, @@ -2020,17 +2250,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-cwPg/fIABRhBnlWOXTpC7GaIEi/L2vgMqPUAZ8vnxLA=", + "integrity": "sha256-XeQC8BcRZjuA+BCb+JRyRe+6wN3m3iVWZ7BIBF7guvA=", "output": "du", "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/du", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/du" ], "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 } }, @@ -2042,8 +2273,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 } }, @@ -2051,17 +2282,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-FHVaf2drHxbWKWpCc0pBlt8NNLiR6x6pX9KrhCkI5zM=", + "integrity": "sha256-DLJvKJfmHsrzgD7083fWvp3RFiUMvs3lvWk0xLH92z8=", "output": "emacs", "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/emacs", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/emacs" ], "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 } }, @@ -2073,8 +2305,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 } }, @@ -2082,17 +2314,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-2p9WFK4fF0vnJDUyNTd6a4jigqsQpp0aG41e0MQSJOM=", + "integrity": "sha256-6hH6jn2pBX9VsoU4v3u3Xol4MR/6vskzIOwvOhMH5M4=", "output": "emacsclient", "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/emacsclient", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/emacsclient" ], "name": "cosmos-emacsclient" }, "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 } }, @@ -2104,8 +2337,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 } }, @@ -2113,17 +2346,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-KSmB7dXht0FmmkJB8JQnUw6uQIfG36SugQXyMdPKPso=", + "integrity": "sha256-Lm8iE0YBdvYwn4RMAyqiLWbVxqaEf2iNWilY3PPAGN4=", "output": "env", "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/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-alpha.3/MODULE.bazel", - "line": 54, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.4/MODULE.bazel", + "line": 113, "column": 22 } }, @@ -2135,8 +2369,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 } }, @@ -2144,17 +2378,18 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-GDxdiCM3bnYQtE+brm6GgDN7EyjV+5vxYj1McQ/YGLQ=", + "integrity": "sha256-/hCOZX9bhwc5SjWQ9GIWwbcPCozCUWUKa/iuDv/ih2c=", "output": "expand", "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/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 } }, @@ -2166,8 +2401,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 } }, @@ -2175,17 +2410,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 } }, @@ -2197,8 +2433,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 } }, @@ -2206,17 +2442,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 } }, @@ -2228,8 +2465,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 } }, @@ -2237,17 +2474,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 } }, @@ -2259,8 +2497,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 } }, @@ -2268,17 +2506,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 } }, @@ -2290,8 +2529,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 } }, @@ -2299,17 +2538,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 } }, @@ -2321,8 +2561,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 } }, @@ -2330,17 +2570,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 } }, @@ -2352,8 +2593,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 } }, @@ -2361,17 +2602,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 } }, @@ -2383,8 +2625,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 } }, @@ -2392,17 +2634,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 } }, @@ -2414,8 +2657,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 } }, @@ -2423,17 +2666,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 } }, @@ -2445,8 +2689,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 } }, @@ -2454,17 +2698,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 } }, @@ -2476,8 +2721,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 } }, @@ -2485,17 +2730,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 } }, @@ -2507,8 +2753,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 } }, @@ -2516,17 +2762,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 } }, @@ -2538,8 +2785,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 } }, @@ -2547,17 +2794,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 } }, @@ -2569,8 +2817,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 } }, @@ -2578,17 +2826,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 } }, @@ -2600,8 +2849,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 } }, @@ -2609,17 +2858,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 } }, @@ -2631,8 +2881,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 } }, @@ -2640,17 +2890,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 } }, @@ -2662,8 +2913,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 } }, @@ -2671,17 +2922,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 } }, @@ -2693,8 +2945,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 } }, @@ -2702,17 +2954,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 } }, @@ -2724,8 +2977,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 } }, @@ -2733,17 +2986,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 } }, @@ -2755,8 +3009,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 } }, @@ -2764,17 +3018,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 } }, @@ -2786,8 +3041,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 } }, @@ -2795,17 +3050,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 } }, @@ -2817,8 +3073,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 } }, @@ -2826,17 +3082,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 } }, @@ -2848,8 +3105,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 } }, @@ -2857,17 +3114,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 } }, @@ -2879,8 +3137,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 } }, @@ -2888,17 +3146,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 } }, @@ -2910,8 +3169,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 } }, @@ -2919,17 +3178,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 } }, @@ -2941,8 +3201,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 } }, @@ -2950,17 +3210,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 } }, @@ -2972,8 +3233,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 } }, @@ -2981,17 +3242,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 } }, @@ -3003,8 +3265,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 } }, @@ -3012,17 +3274,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 } }, @@ -3034,8 +3297,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 } }, @@ -3043,17 +3306,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 } }, @@ -3065,8 +3329,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 } }, @@ -3074,17 +3338,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 } }, @@ -3096,8 +3361,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 } }, @@ -3105,17 +3370,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 } }, @@ -3127,8 +3393,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 } }, @@ -3136,17 +3402,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 } }, @@ -3158,8 +3425,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 } }, @@ -3167,17 +3434,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 } }, @@ -3189,8 +3457,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 } }, @@ -3198,17 +3466,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 } }, @@ -3220,8 +3489,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 } }, @@ -3229,17 +3498,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 } }, @@ -3251,8 +3521,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 } }, @@ -3260,17 +3530,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 } }, @@ -3282,8 +3553,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 } }, @@ -3291,17 +3562,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 } }, @@ -3313,8 +3585,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 } }, @@ -3322,17 +3594,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 } }, @@ -3344,8 +3617,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 } }, @@ -3353,17 +3626,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 } }, @@ -3375,8 +3649,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 } }, @@ -3384,17 +3658,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 } }, @@ -3406,8 +3681,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 } }, @@ -3415,17 +3690,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 } }, @@ -3437,8 +3713,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 } }, @@ -3446,17 +3722,50 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-ZjR+IGm8fv0b/hy4hmdi1xuxpoA5A7MR0AnGndlfTvc=", + "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 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "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 } }, @@ -3468,8 +3777,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 } }, @@ -3477,17 +3786,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 } }, @@ -3499,8 +3809,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 } }, @@ -3508,17 +3818,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 } }, @@ -3530,8 +3841,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 } }, @@ -3539,17 +3850,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 } }, @@ -3561,8 +3873,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 } }, @@ -3570,17 +3882,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 } }, @@ -3592,8 +3905,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 } }, @@ -3601,17 +3914,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 } }, @@ -3623,8 +3937,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 } }, @@ -3632,17 +3946,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 } }, @@ -3654,8 +3969,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 } }, @@ -3663,17 +3978,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 } }, @@ -3685,8 +4001,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 } }, @@ -3694,17 +4010,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 } }, @@ -3716,8 +4033,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 } }, @@ -3725,17 +4042,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 } }, @@ -3747,8 +4065,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 } }, @@ -3756,17 +4074,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 } }, @@ -3778,8 +4097,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 } }, @@ -3787,17 +4106,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 } }, @@ -3809,8 +4129,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 } }, @@ -3818,17 +4138,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 } }, @@ -3840,8 +4161,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 } }, @@ -3849,17 +4170,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 } }, @@ -3871,8 +4193,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 } }, @@ -3880,17 +4202,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 } }, @@ -3902,8 +4225,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 } }, @@ -3911,17 +4234,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 } }, @@ -3933,8 +4257,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 } }, @@ -3942,17 +4266,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 } }, @@ -3964,8 +4289,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 } }, @@ -3973,17 +4298,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 } }, @@ -3995,8 +4321,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 } }, @@ -4004,17 +4330,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 } }, @@ -4026,8 +4353,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 } }, @@ -4035,17 +4362,50 @@ "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { "executable": true, - "integrity": "sha256-mLD3mRX7R9we3IQpAZKC7c4mF2Nz7sG8s63Is0TkYcM=", + "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 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "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 } }, @@ -4057,8 +4417,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 } }, @@ -4066,17 +4426,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 } }, @@ -4088,8 +4449,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 } }, @@ -4097,17 +4458,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 } }, @@ -4119,8 +4481,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 } }, @@ -4128,17 +4490,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 } }, @@ -4150,8 +4513,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 } }, @@ -4159,17 +4522,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 } }, @@ -4181,8 +4545,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 } }, @@ -4190,17 +4554,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 } }, @@ -4212,8 +4577,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 } }, @@ -4221,17 +4586,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 } }, @@ -4243,8 +4609,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 } }, @@ -4252,17 +4618,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 } }, @@ -4274,8 +4641,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 } }, @@ -4283,17 +4650,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 } }, @@ -4305,8 +4673,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 } }, @@ -4314,17 +4682,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 } }, @@ -4336,8 +4705,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 } }, @@ -4345,17 +4714,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 } }, @@ -4367,8 +4737,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 } }, @@ -4376,17 +4746,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 } }, @@ -4398,8 +4769,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 } }, @@ -4407,17 +4778,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 } }, @@ -4429,8 +4801,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 } }, @@ -4438,17 +4810,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 } }, @@ -4460,8 +4833,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 } }, @@ -4469,17 +4842,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 } }, @@ -4491,8 +4865,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 } }, @@ -4500,17 +4874,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 } }, @@ -4522,8 +4897,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 } }, @@ -4531,17 +4906,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 } }, @@ -4553,8 +4929,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 } }, @@ -4562,17 +4938,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 } }, @@ -4584,8 +4961,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 } }, @@ -4593,17 +4970,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 } }, @@ -4615,8 +4993,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 } }, @@ -4624,17 +5002,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 } }, @@ -4646,8 +5025,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 } }, @@ -4655,17 +5034,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 } }, @@ -4677,8 +5057,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 } }, @@ -4686,17 +5066,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 } }, @@ -4708,8 +5089,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 } }, @@ -4717,17 +5098,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 } }, @@ -4739,8 +5121,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 } }, @@ -4748,17 +5130,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 } }, @@ -4770,8 +5153,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 } }, @@ -4779,17 +5162,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 } }, @@ -4801,8 +5185,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 } }, @@ -4810,17 +5194,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 } }, @@ -4832,8 +5217,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 } }, @@ -4841,17 +5226,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 } }, @@ -4863,8 +5249,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 } }, @@ -4872,17 +5258,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 } }, @@ -4894,8 +5281,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 } }, @@ -4903,17 +5290,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 } }, @@ -4925,8 +5313,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 } }, @@ -4934,17 +5322,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 } }, @@ -4956,8 +5345,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 } }, @@ -4965,17 +5354,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 } }, @@ -4987,8 +5377,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 } }, @@ -4996,17 +5386,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 } }, @@ -5018,8 +5409,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 } }, @@ -5027,17 +5418,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 } }, @@ -5049,8 +5441,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 } }, @@ -5058,17 +5450,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 } }, @@ -5080,8 +5473,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 } }, @@ -5089,17 +5482,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 } }, @@ -5111,8 +5505,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 } }, @@ -5120,17 +5514,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 } }, @@ -5142,8 +5537,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 } }, @@ -5151,17 +5546,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 } }, @@ -5173,8 +5569,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 } }, @@ -5182,17 +5578,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 } }, @@ -5204,8 +5601,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 } }, @@ -5213,17 +5610,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 } }, @@ -5235,8 +5633,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 } }, @@ -5244,17 +5642,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 } }, @@ -5266,8 +5665,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 } }, @@ -5275,17 +5674,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 } }, @@ -5297,8 +5697,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 } }, @@ -5306,17 +5706,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 } }, @@ -5328,8 +5729,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 } }, @@ -5337,17 +5738,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 } }, @@ -5359,8 +5761,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 } }, @@ -5368,17 +5770,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 } }, @@ -5390,8 +5793,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 } }, @@ -5399,17 +5802,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 } }, @@ -5421,8 +5825,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 } }, @@ -5430,17 +5834,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 } }, @@ -5452,8 +5857,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 } }, @@ -5461,17 +5866,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 } }, @@ -5483,8 +5889,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 } }, @@ -5492,17 +5898,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 } }, @@ -5514,8 +5921,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 } }, @@ -5523,17 +5930,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 } }, @@ -5545,8 +5953,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 } }, @@ -5554,17 +5962,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 } }, @@ -5576,8 +5985,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 } }, @@ -5585,17 +5994,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 } }, @@ -5607,8 +6017,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 } }, @@ -5616,17 +6026,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 } }, @@ -5638,8 +6049,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 } }, @@ -5647,17 +6058,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 } }, @@ -5669,8 +6081,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 } }, @@ -5678,17 +6090,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 } }, @@ -5700,92 +6113,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 } } @@ -5796,10 +6125,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": {}, @@ -5813,8 +6142,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 } }, @@ -5826,8 +6155,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 } }, @@ -5839,8 +6168,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 } }, @@ -5852,8 +6181,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 } }, @@ -5865,8 +6194,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 } }, @@ -5878,8 +6207,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 } }, @@ -5891,8 +6220,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 } }, @@ -5904,8 +6233,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 } }, @@ -5917,8 +6246,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 } }, @@ -5930,8 +6259,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 } }, @@ -5943,8 +6272,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 } }, @@ -5956,8 +6285,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 } }, @@ -5969,8 +6298,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 } }, @@ -5982,8 +6311,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 } }, @@ -5995,8 +6324,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 } }, @@ -6008,8 +6337,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 } }, @@ -6021,8 +6350,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 } }, @@ -6034,8 +6376,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 } }, @@ -6047,8 +6389,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 } }, @@ -6060,8 +6402,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 } }, @@ -6073,8 +6415,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 } }, @@ -6086,8 +6428,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 } }, @@ -6099,8 +6441,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 } }, @@ -6112,8 +6454,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 } }, @@ -6125,8 +6467,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 } }, @@ -6138,8 +6480,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 } }, @@ -6151,8 +6493,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 } }, @@ -6164,8 +6506,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 } }, @@ -6177,8 +6519,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 } }, @@ -6190,8 +6532,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 } }, @@ -6203,8 +6571,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 } }, @@ -6216,8 +6584,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 } }, @@ -6229,8 +6597,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 } }, @@ -6242,8 +6610,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 } }, @@ -6255,8 +6623,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 } }, @@ -6268,8 +6636,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 } }, @@ -6281,8 +6649,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 } }, @@ -6294,8 +6662,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 } }, @@ -6307,8 +6675,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 } }, @@ -6320,8 +6688,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 } }, @@ -6333,8 +6701,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 } }, @@ -6346,8 +6714,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 } }, @@ -6359,8 +6727,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 } }, @@ -6372,8 +6740,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 } }, @@ -6385,8 +6753,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 } }, @@ -6398,8 +6766,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 } }, @@ -6411,8 +6779,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 } }, @@ -6424,8 +6792,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 } }, @@ -6437,8 +6805,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 } }, @@ -6450,8 +6818,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 } }, @@ -6463,8 +6831,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 } }, @@ -6476,8 +6844,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 } }, @@ -6489,8 +6857,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 } }, @@ -6502,8 +6870,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 } }, @@ -6515,8 +6883,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 } }, @@ -6528,8 +6896,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 } }, @@ -6541,8 +6909,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 } }, @@ -6554,8 +6922,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 } }, @@ -6567,8 +6935,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 } }, @@ -6580,8 +6948,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 } }, @@ -6593,8 +6961,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 } }, @@ -6606,8 +6974,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 } }, @@ -6619,8 +6987,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 } }, @@ -6632,8 +7000,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 } }, @@ -6645,8 +7013,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 } }, @@ -6658,8 +7026,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 } }, @@ -6671,8 +7039,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 } }, @@ -6684,8 +7052,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 } }, @@ -6697,8 +7065,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 } }, @@ -6710,8 +7078,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 } }, @@ -6723,8 +7091,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 } }, @@ -6736,8 +7104,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 } }, @@ -6749,8 +7117,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 } }, @@ -6762,8 +7130,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 } }, @@ -6775,8 +7143,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 } }, @@ -6788,8 +7156,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 } }, @@ -6801,8 +7182,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 } }, @@ -6814,8 +7195,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 } }, @@ -6827,8 +7208,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 } }, @@ -6840,8 +7221,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 } }, @@ -6853,8 +7234,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 } }, @@ -6866,8 +7247,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 } }, @@ -6879,8 +7260,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 } }, @@ -6892,8 +7273,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 } }, @@ -6905,8 +7286,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 } }, @@ -6918,8 +7299,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 } }, @@ -6931,8 +7312,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 } }, @@ -6944,8 +7325,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 } }, @@ -6957,8 +7338,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 } }, @@ -6970,8 +7351,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 } }, @@ -6983,8 +7364,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 } }, @@ -6996,8 +7377,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 } }, @@ -7009,8 +7390,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 } }, @@ -7022,8 +7403,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 } }, @@ -7035,8 +7416,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 } }, @@ -7048,8 +7442,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 } }, @@ -7061,8 +7455,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 } }, @@ -7074,8 +7468,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 } }, @@ -7087,8 +7481,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 } }, @@ -7100,8 +7494,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 } }, @@ -7113,8 +7507,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 } }, @@ -7126,8 +7520,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 } }, @@ -7139,8 +7533,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 } }, @@ -7152,8 +7546,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 } }, @@ -7165,8 +7559,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 } }, @@ -7178,8 +7572,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 } }, @@ -7191,8 +7585,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 } }, @@ -7204,8 +7598,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 } }, @@ -7217,8 +7611,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 } }, @@ -7230,8 +7624,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 } }, @@ -7243,8 +7637,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 } }, @@ -7256,8 +7650,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 } }, @@ -7269,8 +7663,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 } }, @@ -7282,8 +7676,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 } }, @@ -7295,8 +7689,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 } }, @@ -7308,8 +7702,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 } }, @@ -7321,8 +7715,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 } }, @@ -7334,8 +7728,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 } }, @@ -7347,8 +7741,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 } }, @@ -7360,8 +7754,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 } }, @@ -7373,8 +7767,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 } }, @@ -7386,8 +7780,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 } }, @@ -7399,8 +7793,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 } }, @@ -7412,8 +7806,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 } }, @@ -7425,8 +7819,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 } }, @@ -7438,8 +7832,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 } }, @@ -7451,8 +7845,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 } }, @@ -7464,8 +7858,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 } }, @@ -7477,8 +7871,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 } }, @@ -7490,8 +7884,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 } }, @@ -7503,8 +7897,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 } }, @@ -7516,8 +7910,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 } }, @@ -7529,8 +7923,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 } }, @@ -7542,8 +7936,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 } }, @@ -7555,8 +7949,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 } }, @@ -7568,8 +7962,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 } }, @@ -7581,8 +7975,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 } }, @@ -7594,8 +7988,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 } }, @@ -7607,8 +8001,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 } }, @@ -7620,8 +8014,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 } }, @@ -7633,8 +8027,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 } }, @@ -7646,8 +8040,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 } }, @@ -7659,8 +8053,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 } }, @@ -7672,8 +8066,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 } }, @@ -7685,8 +8079,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 } }, @@ -7698,8 +8092,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 } }, @@ -7711,8 +8105,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 } }, @@ -7724,8 +8118,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 } }, @@ -7737,73 +8131,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 } } @@ -7814,7 +8143,7 @@ ], "deps": { "toolchain_utils": "toolchain_utils@_", - "download_utils": "download_utils@1.0.0-beta.1", + "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -7823,10 +8152,10 @@ "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-JdEQJfZEAFr6S17FHuuLNU/59advG/bsj0d+RkwR0yzKg3vCX0fG9IQpslyTzL5lmNl7ieYRxGm8wktUykdZWw==", - "strip_prefix": "ape-v1.0.0-alpha.3", + "integrity": "sha512-3qhOHBqfEGQOlf0v9IZQyJmMtw25DaZhK+EMTydPuDvsI9H6chtg8ZXg+pnJihbbzhptVI8NXPKZ3iiYIwSgOw==", + "strip_prefix": "ape-v1.0.0-beta.4", "remote_patches": {}, "remote_patch_strip": 0 } @@ -8401,10 +8730,10 @@ } } }, - "download_utils@1.0.0-beta.1": { + "download_utils@1.0.0-beta.2": { "name": "download_utils", - "version": "1.0.0-beta.1", - "key": "download_utils@1.0.0-beta.1", + "version": "1.0.0-beta.2", + "key": "download_utils@1.0.0-beta.2", "repoName": "download_utils", "executionPlatformsToRegister": [], "toolchainsToRegister": [], @@ -8418,10 +8747,10 @@ "ruleClassName": "http_archive", "attributes": { "urls": [ - "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" ], - "integrity": "sha512-MGz3+3iDOc8wod5Qhc1uiQTM34QS64cVlSR4RSzCFV6yCRkrWZR555IuxHzOsvpths80rYe42C2JdwmXtKSFnw==", - "strip_prefix": "download_utils-v1.0.0-beta.1", + "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", + "strip_prefix": "download_utils-v1.0.0-beta.2", "remote_patches": {}, "remote_patch_strip": 0 } @@ -10076,18 +10405,18 @@ "target": "@@ape~~_repo_rules~env//:env" } }, - "ape-vdir": { + "ape-patch": { "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", "ruleClassName": "symlink", "attributes": { - "target": "@@ape~~_repo_rules~vdir//:vdir" + "target": "@@ape~~_repo_rules~patch//:patch" } }, - "ape-patch": { + "ape-vdir": { "bzlFile": "@@toolchain_utils~//toolchain/export/symlink:repository.bzl", "ruleClassName": "symlink", "attributes": { - "target": "@@ape~~_repo_rules~patch//:patch" + "target": "@@ape~~_repo_rules~vdir//:vdir" } }, "ape-realpath": {