From 9988b8516355975191032679fe3f824aa4d62a4c Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 30 Apr 2024 12:12:32 +0100 Subject: [PATCH 1/5] feat: add support for `zstd`, `bzip2` and `gzip` --- .bazelrc | 3 + .gitlab-ci.yml | 8 +- MODULE.bazel | 3 + MODULE.bazel.lock | 6732 ++++++++++++++++++++++++++------- e2e/MODULE.bazel | 3 + e2e/MODULE.bazel.lock | 4663 +++++++++++++++-------- e2e/WORKSPACE | 0 e2e/extract/bzip2/BUILD.bazel | 40 + e2e/extract/gzip/BUILD.bazel | 40 + e2e/extract/zstd/BUILD.bazel | 40 + e2e/fixture/BUILD.bazel | 3 + e2e/fixture/fixture.tar.bz2 | Bin 0 -> 331 bytes e2e/fixture/fixture.tar.gz | Bin 0 -> 351 bytes e2e/fixture/fixture.tar.zst | Bin 0 -> 303 bytes e2e/unpack/bzip2/BUILD.bazel | 14 + e2e/unpack/gzip/BUILD.bazel | 14 + e2e/unpack/zstd/BUILD.bazel | 14 + package-lock.json | 2 +- tar/extract/rule.bzl | 32 +- tar/path.bzl | 20 + tar/unpack/rule.bzl | 34 +- 21 files changed, 8703 insertions(+), 2962 deletions(-) delete mode 100644 e2e/WORKSPACE create mode 100644 e2e/extract/bzip2/BUILD.bazel create mode 100644 e2e/extract/gzip/BUILD.bazel create mode 100644 e2e/extract/zstd/BUILD.bazel create mode 100644 e2e/fixture/fixture.tar.bz2 create mode 100644 e2e/fixture/fixture.tar.gz create mode 100644 e2e/fixture/fixture.tar.zst create mode 100644 e2e/unpack/bzip2/BUILD.bazel create mode 100644 e2e/unpack/gzip/BUILD.bazel create mode 100644 e2e/unpack/zstd/BUILD.bazel create mode 100644 tar/path.bzl diff --git a/.bazelrc b/.bazelrc index 31d7aa5..d394b1d 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,3 +1,6 @@ +# Enable `bzlmod` +common --enable_bzlmod + # Build cache build --experimental_guard_against_concurrent_changes diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33095a5..865af0a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,11 +24,11 @@ test: parallel: matrix: - ROOT: - - . - - e2e + - . + - e2e CONFIG: - - local - - remote + - local + - remote script: - cd "${ROOT}"; bazelisk test --config="${CONFIG}" //... diff --git a/MODULE.bazel b/MODULE.bazel index 64ce1c6..660aead 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -6,6 +6,9 @@ module( ], ) +bazel_dep(name = "rules_gzip", version = "1.0.0-beta.1") +bazel_dep(name = "rules_bzip2", version = "1.0.0-beta.1") +bazel_dep(name = "rules_zstd", version = "1.0.0-beta.1") bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.9") bazel_dep(name = "ape", version = "1.0.0-beta.6") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index b39501e..05621dd 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 3, - "moduleFileHash": "77bc3ca4e59d5a4ba5c3b516460743e4314082cb914150f5cf2cbe3a83d484bc", + "moduleFileHash": "ab81c59229521a9beec99e822488dacf951a3e638a636e0e6e2bbefa8726d086", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -32,7 +32,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 12, + "line": 15, "column": 23 }, "imports": { @@ -50,7 +50,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 14, + "line": 17, "column": 15 } } @@ -81,7 +81,187 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 22, + "line": 25, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_gzip": "rules_gzip@1.0.0-beta.1", + "rules_bzip2": "rules_bzip2@1.0.0-beta.1", + "rules_zstd": "rules_zstd@1.0.0-beta.1", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + } + }, + "rules_gzip@1.0.0-beta.1": { + "name": "rules_gzip", + "version": "1.0.0-beta.1", + "key": "rules_gzip@1.0.0-beta.1", + "repoName": "rules_gzip", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//gzip/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-pigz": "ape-pigz", + "pigz": "pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "pigz", + "target": "@ape-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-pigz": "resolved-pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//gzip/toolchain/pigz:type", + "name": "resolved-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_gzip~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_gzip/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-d608JvMhu4oVc3oQp3bs1OE45IuPiSz8LTQ0oHXZ6+dy6TkDaK+AGo7r1u4UqnRrix7im4WD4EK4YmTq5Yb+xw==", + "strip_prefix": "rules_gzip-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_bzip2@1.0.0-beta.1": { + "name": "rules_bzip2", + "version": "1.0.0-beta.1", + "key": "rules_bzip2@1.0.0-beta.1", + "repoName": "rules_bzip2", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//bzip2/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_bzip2@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-bzip2": "ape-bzip2", + "bzip2": "bzip2" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "bzip2", + "target": "@ape-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_bzip2@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-bzip2": "resolved-bzip2" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//bzip2/toolchain/bzip2:type", + "name": "resolved-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 24, "column": 9 } } @@ -91,10 +271,122 @@ } ], "deps": { + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.6", + "ape": "ape@1.0.0-beta.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_bzip2~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_bzip2/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-LxqJpKipVUyxOxyRq2peyrIv2v8aUiLiDMbhGqKzSjg+tzHMDapOo/mO6RRmh7N/7UvsxXKUlnPqSwzWNi82Gw==", + "strip_prefix": "rules_bzip2-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_zstd@1.0.0-beta.1": { + "name": "rules_zstd", + "version": "1.0.0-beta.1", + "key": "rules_zstd@1.0.0-beta.1", + "repoName": "rules_zstd", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//zstd/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 15, + "column": 23 + }, + "imports": { + "ape-zstd": "ape-zstd", + "zstd": "zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "zstd", + "target": "@ape-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 17, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-zstd": "resolved-zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//zstd/toolchain/zstd:type", + "name": "resolved-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 25, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_bazel_lib": "aspect_bazel_lib@2.7.0", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_zstd~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_zstd/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-dwkIQ5WKxbfCpNDiP7wd9cO+AvXXxf00v1IKbcXE6v/9fquTfggVUgEdPS1WTbC95HKRUaal8/5j0cCF17Z4EQ==", + "strip_prefix": "rules_zstd-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } } }, "toolchain_utils@1.0.0-beta.9": { @@ -150,8 +442,8 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", - "platforms": "platforms@0.0.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -170,10 +462,10 @@ } } }, - "ape@1.0.0-beta.6": { + "ape@1.0.0-beta.7": { "name": "ape", - "version": "1.0.0-beta.6", - "key": "ape@1.0.0-beta.6", + "version": "1.0.0-beta.7", + "key": "ape@1.0.0-beta.7", "repoName": "ape", "executionPlatformsToRegister": [], "toolchainsToRegister": [ @@ -183,9 +475,9 @@ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-beta.6", + "usingModule": "ape@1.0.0-beta.7", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 0, "column": 0 }, @@ -362,8 +654,6 @@ "patch": "patch", "cosmos-pathchk": "cosmos-pathchk", "pathchk": "pathchk", - "cosmos-pigz": "cosmos-pigz", - "pigz": "pigz", "cosmos-pinky": "cosmos-pinky", "pinky": "pinky", "cosmos-pledge": "cosmos-pledge", @@ -507,7 +797,29 @@ "cosmos-zsh": "cosmos-zsh", "zsh": "zsh", "cosmos-zstd": "cosmos-zstd", - "zstd": "zstd" + "zstd": "zstd", + "cosmos-chmod": "cosmos-chmod", + "chmod": "chmod", + "cosmos-cp": "cosmos-cp", + "cp": "cp", + "cosmos-dd": "cosmos-dd", + "dd": "dd", + "cosmos-echo": "cosmos-echo", + "echo": "echo", + "cosmos-gzip": "cosmos-gzip", + "gzip": "gzip", + "cosmos-mkdir": "cosmos-mkdir", + "mkdir": "mkdir", + "cosmos-mv": "cosmos-mv", + "mv": "mv", + "cosmos-printf": "cosmos-printf", + "printf": "printf", + "cosmos-rm": "cosmos-rm", + "rm": "rm", + "cosmos-uname": "cosmos-uname", + "uname": "uname", + "cosmos-pigz": "cosmos-pigz", + "pigz": "pigz" }, "devImports": [], "tags": [ @@ -531,7 +843,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 17, "column": 17 } @@ -546,7 +858,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 36, "column": 7 } @@ -559,13 +871,13 @@ "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" + "https://raw.githubusercontent.com/jart/cosmopolitan/3.3.1/ape/ape-m1.c" ], "name": "ape-m1.c" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 45, "column": 14 } @@ -582,7 +894,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 58, "column": 8 } @@ -601,7 +913,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -620,7 +932,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -639,7 +951,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -651,7 +963,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 85, "column": 3 } @@ -670,7 +982,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 87, "column": 7 } @@ -683,7 +995,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 100, "column": 9 } @@ -702,7 +1014,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -715,7 +1027,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -734,7 +1046,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -747,7 +1059,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -766,7 +1078,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -779,7 +1091,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -798,7 +1110,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -811,7 +1123,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -830,7 +1142,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -843,7 +1155,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -862,7 +1174,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -875,7 +1187,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -894,7 +1206,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -907,7 +1219,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -926,7 +1238,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -939,7 +1251,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -958,7 +1270,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -971,7 +1283,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -990,7 +1302,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1003,7 +1315,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1022,7 +1334,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1035,7 +1347,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1054,7 +1366,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1067,7 +1379,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1086,7 +1398,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1099,7 +1411,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1118,7 +1430,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1131,7 +1443,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1150,7 +1462,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1163,7 +1475,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1182,7 +1494,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1195,7 +1507,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1214,7 +1526,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1227,7 +1539,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1246,7 +1558,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1259,7 +1571,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1278,7 +1590,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1291,7 +1603,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1310,7 +1622,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1323,7 +1635,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1342,7 +1654,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1355,7 +1667,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1374,7 +1686,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1387,7 +1699,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1406,7 +1718,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1419,7 +1731,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1438,7 +1750,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1451,7 +1763,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1470,7 +1782,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1483,7 +1795,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1502,7 +1814,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1515,7 +1827,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1534,7 +1846,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1547,7 +1859,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1566,7 +1878,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1579,7 +1891,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1598,7 +1910,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1611,7 +1923,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1630,7 +1942,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1643,7 +1955,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1662,7 +1974,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1675,7 +1987,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1694,7 +2006,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1707,7 +2019,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1726,7 +2038,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1739,7 +2051,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1758,7 +2070,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1771,7 +2083,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1790,7 +2102,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1803,7 +2115,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1822,7 +2134,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1835,7 +2147,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1854,7 +2166,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1867,7 +2179,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1886,7 +2198,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1899,7 +2211,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1918,7 +2230,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1931,7 +2243,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1950,7 +2262,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1963,7 +2275,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -1982,7 +2294,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -1995,7 +2307,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2014,7 +2326,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2027,7 +2339,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2046,7 +2358,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2059,7 +2371,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2078,7 +2390,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2091,7 +2403,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2110,7 +2422,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2123,7 +2435,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2142,7 +2454,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2155,7 +2467,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2174,7 +2486,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2187,7 +2499,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2206,7 +2518,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2219,7 +2531,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2238,7 +2550,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2251,7 +2563,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2270,7 +2582,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2283,7 +2595,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2302,7 +2614,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2315,7 +2627,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2334,7 +2646,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2347,7 +2659,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2366,7 +2678,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2379,7 +2691,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2398,7 +2710,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2411,7 +2723,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2430,7 +2742,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2443,7 +2755,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2462,7 +2774,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2475,7 +2787,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2494,7 +2806,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2507,7 +2819,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2526,7 +2838,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2539,7 +2851,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2558,7 +2870,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2571,7 +2883,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2590,7 +2902,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2603,7 +2915,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2622,7 +2934,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2635,7 +2947,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2654,7 +2966,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2667,7 +2979,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2686,7 +2998,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2699,7 +3011,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2718,7 +3030,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2731,7 +3043,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2750,7 +3062,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2763,7 +3075,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2782,7 +3094,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2795,7 +3107,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2814,7 +3126,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2827,7 +3139,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2846,7 +3158,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2859,7 +3171,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2878,7 +3190,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2891,7 +3203,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2910,7 +3222,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2923,7 +3235,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2942,7 +3254,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2955,7 +3267,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -2974,7 +3286,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -2987,7 +3299,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3006,7 +3318,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3019,7 +3331,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3038,7 +3350,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3051,7 +3363,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3070,7 +3382,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3083,7 +3395,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3102,7 +3414,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3115,7 +3427,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3134,7 +3446,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3147,7 +3459,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3166,7 +3478,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3179,7 +3491,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3198,7 +3510,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3211,7 +3523,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3230,7 +3542,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3243,7 +3555,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3262,7 +3574,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3275,39 +3587,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 123, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-pvWipO8MGunU157lNj5pkNwMwDYSUFjtx7nWoNxBDw8=", - "output": "pigz", - "urls": [ - "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-beta.6/MODULE.bazel", - "line": 113, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pigz//:pigz", - "name": "pigz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3326,7 +3606,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3339,7 +3619,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3358,7 +3638,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3371,7 +3651,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3390,7 +3670,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3403,7 +3683,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3422,7 +3702,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3435,7 +3715,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3454,7 +3734,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3467,7 +3747,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3486,7 +3766,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3499,7 +3779,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3518,7 +3798,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3531,7 +3811,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3550,7 +3830,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3563,7 +3843,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3582,7 +3862,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3595,7 +3875,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3614,7 +3894,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3627,7 +3907,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3646,7 +3926,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3659,7 +3939,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3678,7 +3958,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3691,7 +3971,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3710,7 +3990,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3723,7 +4003,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3742,7 +4022,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3755,7 +4035,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3774,7 +4054,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3787,7 +4067,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3806,7 +4086,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3819,7 +4099,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3838,7 +4118,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3851,7 +4131,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3870,7 +4150,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3883,7 +4163,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3902,7 +4182,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3915,7 +4195,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3934,7 +4214,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3947,7 +4227,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3966,7 +4246,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3979,7 +4259,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3998,7 +4278,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4011,7 +4291,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4030,7 +4310,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4043,7 +4323,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4062,7 +4342,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4075,7 +4355,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4094,7 +4374,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4107,7 +4387,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4126,7 +4406,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4139,7 +4419,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4158,7 +4438,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4171,7 +4451,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4190,7 +4470,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4203,7 +4483,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4222,7 +4502,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4235,7 +4515,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4254,7 +4534,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4267,7 +4547,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4286,7 +4566,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4299,7 +4579,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4318,7 +4598,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4331,7 +4611,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4350,7 +4630,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4363,7 +4643,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4382,7 +4662,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4395,7 +4675,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4414,7 +4694,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4427,7 +4707,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4446,7 +4726,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4459,7 +4739,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4478,7 +4758,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4491,7 +4771,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4510,7 +4790,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4523,7 +4803,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4542,7 +4822,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4555,7 +4835,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4574,7 +4854,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4587,7 +4867,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4606,7 +4886,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4619,7 +4899,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4638,7 +4918,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4651,7 +4931,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4670,7 +4950,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4683,7 +4963,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4702,7 +4982,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4715,7 +4995,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4734,7 +5014,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4747,7 +5027,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4766,7 +5046,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4779,7 +5059,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4798,7 +5078,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4811,7 +5091,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4830,7 +5110,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4843,7 +5123,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4862,7 +5142,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4875,7 +5155,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4894,7 +5174,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4907,7 +5187,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4926,7 +5206,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4939,7 +5219,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4958,7 +5238,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4971,7 +5251,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4990,7 +5270,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5003,7 +5283,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5022,7 +5302,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5035,7 +5315,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5054,7 +5334,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5067,7 +5347,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5086,7 +5366,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5099,7 +5379,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5118,7 +5398,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5131,7 +5411,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5150,7 +5430,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5163,7 +5443,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5182,7 +5462,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5195,7 +5475,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5214,7 +5494,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5227,7 +5507,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5246,7 +5526,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5259,7 +5539,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5278,7 +5558,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5291,7 +5571,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5310,7 +5590,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5323,7 +5603,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5342,7 +5622,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5355,7 +5635,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5374,7 +5654,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5387,7 +5667,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5406,7 +5686,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5419,7 +5699,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5438,7 +5718,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5451,7 +5731,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5470,7 +5750,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5483,7 +5763,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5502,7 +5782,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5515,7 +5795,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5534,7 +5814,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5547,7 +5827,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5566,7 +5846,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5579,7 +5859,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5598,7 +5878,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5611,36 +5891,388 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-beta.6", - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 109, - "column": 23 - }, - "imports": {}, - "devImports": [], - "tags": [ + }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", + "output": "chmod", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" + ], + "name": "cosmos-chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-chmod//:chmod", + "name": "chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", + "output": "cp", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" + ], + "name": "cosmos-cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-cp//:cp", + "name": "cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", + "output": "dd", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" + ], + "name": "cosmos-dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-dd//:dd", + "name": "dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", + "output": "echo", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" + ], + "name": "cosmos-echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-echo//:echo", + "name": "echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", + "output": "gzip", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" + ], + "name": "cosmos-gzip" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-gzip//:gzip", + "name": "gzip" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", + "output": "mkdir", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" + ], + "name": "cosmos-mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-mkdir//:mkdir", + "name": "mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", + "output": "mv", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" + ], + "name": "cosmos-mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-mv//:mv", + "name": "mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", + "output": "printf", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" + ], + "name": "cosmos-printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-printf//:printf", + "name": "printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", + "output": "rm", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" + ], + "name": "cosmos-rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-rm//:rm", + "name": "rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", + "output": "uname", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" + ], + "name": "cosmos-uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-uname//:uname", + "name": "uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, + "column": 23 + } + }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "output": "pigz", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", + "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" + ], + "name": "cosmos-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 330, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-pigz//:pigz", + "name": "pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 340, + "column": 23 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "ape@1.0.0-beta.7", + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 109, + "column": 23 + }, + "imports": {}, + "devImports": [], + "tags": [ + { + "tagName": "symlink", "attributeValues": { "name": "ape-awk", "target": "@awk" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5653,7 +6285,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5666,7 +6298,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5679,7 +6311,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5692,7 +6324,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5705,7 +6337,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5718,7 +6350,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5731,7 +6363,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5744,7 +6376,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5757,7 +6389,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5770,7 +6402,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5783,7 +6415,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5796,7 +6428,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5809,7 +6441,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5822,7 +6454,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5835,7 +6467,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5848,7 +6480,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5861,7 +6493,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5874,7 +6506,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5887,7 +6519,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5900,7 +6532,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5913,7 +6545,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5926,7 +6558,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5939,7 +6571,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5952,7 +6584,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5965,7 +6597,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5978,7 +6610,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -5991,7 +6623,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6004,7 +6636,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6017,7 +6649,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6030,7 +6662,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6043,7 +6675,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6056,7 +6688,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6069,7 +6701,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6082,7 +6714,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6095,7 +6727,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6108,7 +6740,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6121,7 +6753,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6134,7 +6766,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6147,7 +6779,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6160,7 +6792,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6173,7 +6805,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6186,7 +6818,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6199,7 +6831,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6212,7 +6844,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6225,7 +6857,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6238,7 +6870,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6251,7 +6883,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6264,7 +6896,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6277,7 +6909,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6290,7 +6922,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6303,7 +6935,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6316,7 +6948,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6329,7 +6961,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6342,7 +6974,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6355,7 +6987,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6368,7 +7000,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6381,7 +7013,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6394,7 +7026,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6407,7 +7039,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6420,7 +7052,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6433,7 +7065,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6446,7 +7078,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6459,7 +7091,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6472,7 +7104,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6485,7 +7117,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6498,7 +7130,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6511,7 +7143,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6524,7 +7156,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6537,7 +7169,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6550,7 +7182,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6563,7 +7195,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6576,7 +7208,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6589,7 +7221,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6602,7 +7234,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6615,7 +7247,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6628,7 +7260,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6641,7 +7273,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6654,7 +7286,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6667,7 +7299,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6680,7 +7312,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6688,25 +7320,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-pigz", - "target": "@pigz" + "name": "ape-pinky", + "target": "@pinky" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pinky", - "target": "@pinky" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6719,7 +7338,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6732,7 +7351,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6745,7 +7364,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6758,7 +7377,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6771,7 +7390,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6784,7 +7403,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6797,7 +7416,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6810,7 +7429,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6823,7 +7442,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6836,7 +7455,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6849,7 +7468,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6862,7 +7481,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6875,7 +7494,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6888,7 +7507,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6901,7 +7520,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6914,7 +7533,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6927,7 +7546,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6940,7 +7559,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6953,7 +7572,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6966,7 +7585,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6979,7 +7598,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -6992,7 +7611,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7005,7 +7624,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7018,7 +7637,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7031,7 +7650,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7044,7 +7663,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7057,7 +7676,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7070,7 +7689,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7083,7 +7702,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7096,7 +7715,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7109,7 +7728,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7122,7 +7741,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7135,7 +7754,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7148,7 +7767,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7161,7 +7780,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7174,7 +7793,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7187,7 +7806,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7200,7 +7819,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7213,7 +7832,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7226,7 +7845,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7239,7 +7858,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7252,7 +7871,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7265,7 +7884,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7278,7 +7897,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7291,7 +7910,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7304,7 +7923,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7317,7 +7936,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7330,7 +7949,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7343,7 +7962,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7356,7 +7975,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7369,7 +7988,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7382,7 +8001,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7395,7 +8014,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7408,7 +8027,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7421,7 +8040,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7434,7 +8053,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7447,7 +8066,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7460,7 +8079,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7473,7 +8092,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7486,7 +8105,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7499,7 +8118,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7512,7 +8131,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7525,7 +8144,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7538,7 +8157,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7551,7 +8170,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7564,7 +8183,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7577,7 +8196,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7590,7 +8209,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7603,7 +8222,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7616,7 +8235,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -7629,10 +8248,153 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-chmod", + "target": "@chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-cp", + "target": "@cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-dd", + "target": "@dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-echo", + "target": "@echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-gzip", + "target": "@gzip" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mkdir", + "target": "@mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mv", + "target": "@mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-printf", + "target": "@printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-rm", + "target": "@rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-uname", + "target": "@uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-pigz", + "target": "@pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 344, + "column": 23 + } } ], "hasDevUseExtension": false, @@ -7649,12 +8411,12 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "ape~1.0.0-beta.6", + "name": "ape~1.0.0-beta.7", "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.6/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.7/downloads/src.tar.gz" ], - "integrity": "sha512-fZNOpj31MphsHbrPcS71rxq2vcGkLtiBB8hpTQkqrd4sHDhhjfi8ovi8YSQtC70lbyBKxZQ/htwrradnbB58kg==", - "strip_prefix": "ape-v1.0.0-beta.6", + "integrity": "sha512-5xqM1Z2LFCw3iS7ME8nDunrkEEdITYjapBpasgIJ9+svfxcXOB6LQ/JSso0Aw6L7GFWyk4QqvYvSTb6FHz4+XA==", + "strip_prefix": "ape-v1.0.0-beta.7", "remote_patches": {}, "remote_patch_strip": 0 } @@ -7787,7 +8549,7 @@ "rules_license": "rules_license@0.0.7", "rules_proto": "rules_proto@4.0.0", "rules_python": "rules_python@0.4.0", - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "com_google_protobuf": "protobuf@3.19.6", "zlib": "zlib@1.3", "build_bazel_apple_support": "apple_support@1.5.0", @@ -7803,174 +8565,2554 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_" } }, - "bazel_skylib@1.4.2": { - "name": "bazel_skylib", - "version": "1.4.2", - "key": "bazel_skylib@1.4.2", - "repoName": "bazel_skylib", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//toolchains/unittest:cmd_toolchain", - "//toolchains/unittest:bash_toolchain" - ], - "extensionUsages": [], - "deps": { - "platforms": "platforms@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "bazel_skylib~1.4.2", - "urls": [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz" - ], - "integrity": "sha256-Zv/ZMVZlv6r8lrUiePV8fi3Qn17eJ56m05sr5HHn46o=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "platforms@0.0.7": { - "name": "platforms", - "version": "0.0.7", - "key": "platforms@0.0.7", - "repoName": "platforms", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "platforms", - "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" - ], - "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "download_utils@1.0.0-beta.2": { - "name": "download_utils", - "version": "1.0.0-beta.2", - "key": "download_utils@1.0.0-beta.2", - "repoName": "download_utils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "download_utils~1.0.0-beta.2", - "urls": [ - "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" - ], - "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", - "strip_prefix": "download_utils-v1.0.0-beta.2", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_cc@0.0.9": { - "name": "rules_cc", - "version": "0.0.9", - "key": "rules_cc@0.0.9", - "repoName": "rules_cc", + "rules_coreutils@1.0.0-beta.1": { + "name": "rules_coreutils", + "version": "1.0.0-beta.1", + "key": "rules_coreutils@1.0.0-beta.1", + "repoName": "rules_coreutils", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "@local_config_cc_toolchains//:all" + "//coreutils/toolchain/..." ], "extensionUsages": [ { - "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", - "extensionName": "cc_configure_extension", - "usingModule": "rules_cc@0.0.9", + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_coreutils@1.0.0-beta.1", "location": { - "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel", - "line": 9, - "column": 29 + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 }, "imports": { - "local_config_cc_toolchains": "local_config_cc_toolchains" + "coreutils-arm64-linux-gnu": "coreutils-arm64-linux-gnu", + "coreutils-amd64-linux-gnu": "coreutils-amd64-linux-gnu", + "coreutils-amd64-windows-msvc": "coreutils-amd64-windows-msvc", + "coreutils-arm64-macos-darwin": "coreutils-arm64-macos-darwin", + "coreutils-amd64-macos-darwin": "coreutils-amd64-macos-darwin", + "coreutils": "coreutils", + "busybox-arm64-linux": "busybox-arm64-linux", + "busybox-amd64-linux": "busybox-amd64-linux", + "resolved-busybox": "resolved-busybox", + "which-busybox": "which-busybox", + "resolved-coreutils": "resolved-coreutils", + "which-coreutils": "which-coreutils", + "resolved-arch": "resolved-arch", + "which-arch": "which-arch", + "resolved-base64": "resolved-base64", + "which-base64": "which-base64", + "resolved-basename": "resolved-basename", + "which-basename": "which-basename", + "resolved-cat": "resolved-cat", + "which-cat": "which-cat", + "resolved-chmod": "resolved-chmod", + "which-chmod": "which-chmod", + "resolved-chown": "resolved-chown", + "which-chown": "which-chown", + "resolved-cp": "resolved-cp", + "which-cp": "which-cp", + "resolved-cut": "resolved-cut", + "which-cut": "which-cut", + "resolved-date": "resolved-date", + "which-date": "which-date", + "resolved-dd": "resolved-dd", + "which-dd": "which-dd", + "resolved-df": "resolved-df", + "which-df": "which-df", + "resolved-dirname": "resolved-dirname", + "which-dirname": "which-dirname", + "resolved-du": "resolved-du", + "which-du": "which-du", + "resolved-echo": "resolved-echo", + "which-echo": "which-echo", + "resolved-env": "resolved-env", + "which-env": "which-env", + "resolved-expand": "resolved-expand", + "which-expand": "which-expand", + "resolved-expr": "resolved-expr", + "which-expr": "which-expr", + "resolved-factor": "resolved-factor", + "which-factor": "which-factor", + "resolved-false": "resolved-false", + "which-false": "which-false", + "resolved-fold": "resolved-fold", + "which-fold": "which-fold", + "resolved-head": "resolved-head", + "which-head": "which-head", + "resolved-hostname": "resolved-hostname", + "which-hostname": "which-hostname", + "resolved-install": "resolved-install", + "which-install": "which-install", + "resolved-link": "resolved-link", + "which-link": "which-link", + "resolved-ln": "resolved-ln", + "which-ln": "which-ln", + "resolved-ls": "resolved-ls", + "which-ls": "which-ls", + "resolved-md5sum": "resolved-md5sum", + "which-md5sum": "which-md5sum", + "resolved-mkdir": "resolved-mkdir", + "which-mkdir": "which-mkdir", + "resolved-mktemp": "resolved-mktemp", + "which-mktemp": "which-mktemp", + "resolved-more": "resolved-more", + "which-more": "which-more", + "resolved-mv": "resolved-mv", + "which-mv": "which-mv", + "resolved-nl": "resolved-nl", + "which-nl": "which-nl", + "resolved-nproc": "resolved-nproc", + "which-nproc": "which-nproc", + "resolved-od": "resolved-od", + "which-od": "which-od", + "resolved-paste": "resolved-paste", + "which-paste": "which-paste", + "resolved-printf": "resolved-printf", + "which-printf": "which-printf", + "resolved-pwd": "resolved-pwd", + "which-pwd": "which-pwd", + "resolved-readlink": "resolved-readlink", + "which-readlink": "which-readlink", + "resolved-realpath": "resolved-realpath", + "which-realpath": "which-realpath", + "resolved-rm": "resolved-rm", + "which-rm": "which-rm", + "resolved-rmdir": "resolved-rmdir", + "which-rmdir": "which-rmdir", + "resolved-seq": "resolved-seq", + "which-seq": "which-seq", + "resolved-sha1sum": "resolved-sha1sum", + "which-sha1sum": "which-sha1sum", + "resolved-sha256sum": "resolved-sha256sum", + "which-sha256sum": "which-sha256sum", + "resolved-sha3sum": "resolved-sha3sum", + "which-sha3sum": "which-sha3sum", + "resolved-sha512sum": "resolved-sha512sum", + "which-sha512sum": "which-sha512sum", + "resolved-shred": "resolved-shred", + "which-shred": "which-shred", + "resolved-shuf": "resolved-shuf", + "which-shuf": "which-shuf", + "resolved-sleep": "resolved-sleep", + "which-sleep": "which-sleep", + "resolved-sort": "resolved-sort", + "which-sort": "which-sort", + "resolved-sync": "resolved-sync", + "which-sync": "which-sync", + "resolved-tac": "resolved-tac", + "which-tac": "which-tac", + "resolved-tail": "resolved-tail", + "which-tail": "which-tail", + "resolved-tee": "resolved-tee", + "which-tee": "which-tee", + "resolved-test": "resolved-test", + "which-test": "which-test", + "resolved-touch": "resolved-touch", + "which-touch": "which-touch", + "resolved-tr": "resolved-tr", + "which-tr": "which-tr", + "resolved-true": "resolved-true", + "which-true": "which-true", + "resolved-truncate": "resolved-truncate", + "which-truncate": "which-truncate", + "resolved-uname": "resolved-uname", + "which-uname": "which-uname", + "resolved-unexpand": "resolved-unexpand", + "which-unexpand": "which-unexpand", + "resolved-uniq": "resolved-uniq", + "which-uniq": "which-uniq", + "resolved-unlink": "resolved-unlink", + "which-unlink": "which-unlink", + "resolved-wc": "resolved-wc", + "which-wc": "which-wc", + "resolved-whoami": "resolved-whoami", + "which-whoami": "which-whoami", + "resolved-yes": "resolved-yes", + "which-yes": "which-yes" }, "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "platforms": "platforms@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_cc~0.0.9", - "urls": [ - "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz" - ], - "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=", - "strip_prefix": "rules_cc-0.0.9", - "remote_patches": { - "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g=" - }, - "remote_patch_strip": 0 - } - } - }, - "rules_java@7.1.0": { - "name": "rules_java", - "version": "7.1.0", - "key": "rules_java@7.1.0", - "repoName": "rules_java", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//toolchains:all", - "@local_jdk//:runtime_toolchain_definition", - "@local_jdk//:bootstrap_runtime_toolchain_definition", - "@remotejdk11_linux_toolchain_config_repo//:all", - "@remotejdk11_linux_aarch64_toolchain_config_repo//:all", - "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all", - "@remotejdk11_linux_s390x_toolchain_config_repo//:all", - "@remotejdk11_macos_toolchain_config_repo//:all", - "@remotejdk11_macos_aarch64_toolchain_config_repo//:all", - "@remotejdk11_win_toolchain_config_repo//:all", - "@remotejdk11_win_arm64_toolchain_config_repo//:all", - "@remotejdk17_linux_toolchain_config_repo//:all", - "@remotejdk17_linux_aarch64_toolchain_config_repo//:all", - "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all", - "@remotejdk17_linux_s390x_toolchain_config_repo//:all", - "@remotejdk17_macos_toolchain_config_repo//:all", - "@remotejdk17_macos_aarch64_toolchain_config_repo//:all", - "@remotejdk17_win_toolchain_config_repo//:all", - "@remotejdk17_win_arm64_toolchain_config_repo//:all", - "@remotejdk21_linux_toolchain_config_repo//:all", - "@remotejdk21_linux_aarch64_toolchain_config_repo//:all", + "tags": [ + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint" + ], + "integrity": "sha256-8wMVMgAgf8JQ2+2LdoewkyDo416VEsf9RlMJl4jiBjk=", + "links": { + "coreutils": "entrypoint" + }, + "strip_prefix": "coreutils-0.0.23-aarch64-unknown-linux-gnu", + "urls": [ + "https://github.com/uutils/coreutils/releases/download/0.0.23/coreutils-0.0.23-aarch64-unknown-linux-gnu.tar.gz" + ], + "name": "coreutils-arm64-linux-gnu" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 12 + } + }, + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint" + ], + "integrity": "sha256-u7OMW43Y46aXRRIKULfKdfUW51WJn6G70s5Xxwb6/1g=", + "links": { + "coreutils": "entrypoint" + }, + "strip_prefix": "coreutils-0.0.23-x86_64-unknown-linux-gnu", + "urls": [ + "https://github.com/uutils/coreutils/releases/download/0.0.23/coreutils-0.0.23-x86_64-unknown-linux-gnu.tar.gz" + ], + "name": "coreutils-amd64-linux-gnu" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 12 + } + }, + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint" + ], + "integrity": "sha256-aglIj5JvFGLm2ABwRzWAsZRTTD3X444V3GxHM9pGJS4=", + "links": { + "coreutils.exe": "entrypoint" + }, + "strip_prefix": "coreutils-0.0.23-x86_64-pc-windows-msvc", + "urls": [ + "https://github.com/uutils/coreutils/releases/download/0.0.23/coreutils-0.0.23-x86_64-pc-windows-msvc.zip" + ], + "name": "coreutils-amd64-windows-msvc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 12 + } + }, + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint" + ], + "integrity": "sha256-KP90sjKxtXDbLC+o5f4+gQnvP3Tr7O0RopME4g9QF5E=", + "links": { + "coreutils": "entrypoint" + }, + "strip_prefix": "coreutils-0.0.23-aarch64-apple-darwin", + "urls": [ + "https://github.com/uutils/coreutils/releases/download/0.0.23/coreutils-0.0.23-aarch64-apple-darwin.tar.gz" + ], + "name": "coreutils-arm64-macos-darwin" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 12 + } + }, + { + "tagName": "@download_utils//download/archive:defs.bzl%download_archive", + "attributeValues": { + "srcs": [ + "entrypoint" + ], + "integrity": "sha256-SswetVAuK/hMK1r9uBvNnKj5JpSgD0bzkbsHTxOabCo=", + "links": { + "coreutils": "entrypoint" + }, + "strip_prefix": "coreutils-0.0.23-x86_64-apple-darwin", + "urls": [ + "https://github.com/uutils/coreutils/releases/download/0.0.23/coreutils-0.0.23-x86_64-apple-darwin.tar.gz" + ], + "name": "coreutils-amd64-macos-darwin" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 12 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/select:defs.bzl%toolchain_local_select", + "attributeValues": { + "map": { + "amd64-linux-gnu": "@coreutils-amd64-linux-gnu", + "arm64-linux-gnu": "@coreutils-arm64-linux-gnu", + "amd64-windows": "@coreutils-amd64-windows-msvc", + "arm64-macos-darwin": "@coreutils-arm64-macos-darwin", + "amd64-macos-darwin": "@coreutils-amd64-macos-darwin" + }, + "name": "coreutils" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 40, + "column": 7 + } + }, + { + "tagName": "@download_utils//download/deb:defs.bzl%download_deb", + "attributeValues": { + "srcs": [ + "busybox" + ], + "integrity": "sha256-C0+0zi0/0Woc11BTX5d1ugxC2GOeE9ZjUka6g6DUvc8=", + "strip_prefix": "bin", + "urls": [ + "http://ftp.uk.debian.org/debian/pool/main/b/busybox/busybox-static_1.35.0-4+b3_arm64.deb" + ], + "name": "busybox-arm64-linux" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 59, + "column": 4 + } + }, + { + "tagName": "@download_utils//download/deb:defs.bzl%download_deb", + "attributeValues": { + "srcs": [ + "busybox" + ], + "integrity": "sha256-rMRMIHKVuGEU2kiV71Ouvxhr8839wmmloaCer6xqYNs=", + "strip_prefix": "bin", + "urls": [ + "http://ftp.uk.debian.org/debian/pool/main/b/busybox/busybox-static_1.35.0-4+b3_amd64.deb" + ], + "name": "busybox-amd64-linux" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 67, + "column": 4 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "busybox", + "toolchain_type": "//coreutils/toolchain/busybox:type", + "name": "resolved-busybox" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "busybox", + "name": "which-busybox" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "coreutils", + "toolchain_type": "//coreutils/toolchain/coreutils:type", + "name": "resolved-coreutils" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "coreutils", + "name": "which-coreutils" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "arch", + "toolchain_type": "//coreutils/toolchain/arch:type", + "name": "resolved-arch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "arch", + "name": "which-arch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "base64", + "toolchain_type": "//coreutils/toolchain/base64:type", + "name": "resolved-base64" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "base64", + "name": "which-base64" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "basename", + "toolchain_type": "//coreutils/toolchain/basename:type", + "name": "resolved-basename" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "basename", + "name": "which-basename" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "cat", + "toolchain_type": "//coreutils/toolchain/cat:type", + "name": "resolved-cat" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "cat", + "name": "which-cat" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "chmod", + "toolchain_type": "//coreutils/toolchain/chmod:type", + "name": "resolved-chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "chmod", + "name": "which-chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "chown", + "toolchain_type": "//coreutils/toolchain/chown:type", + "name": "resolved-chown" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "chown", + "name": "which-chown" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "cp", + "toolchain_type": "//coreutils/toolchain/cp:type", + "name": "resolved-cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "cp", + "name": "which-cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "cut", + "toolchain_type": "//coreutils/toolchain/cut:type", + "name": "resolved-cut" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "cut", + "name": "which-cut" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "date", + "toolchain_type": "//coreutils/toolchain/date:type", + "name": "resolved-date" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "date", + "name": "which-date" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "dd", + "toolchain_type": "//coreutils/toolchain/dd:type", + "name": "resolved-dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "dd", + "name": "which-dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "df", + "toolchain_type": "//coreutils/toolchain/df:type", + "name": "resolved-df" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "df", + "name": "which-df" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "dirname", + "toolchain_type": "//coreutils/toolchain/dirname:type", + "name": "resolved-dirname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "dirname", + "name": "which-dirname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "du", + "toolchain_type": "//coreutils/toolchain/du:type", + "name": "resolved-du" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "du", + "name": "which-du" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "echo", + "toolchain_type": "//coreutils/toolchain/echo:type", + "name": "resolved-echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "echo", + "name": "which-echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "env", + "toolchain_type": "//coreutils/toolchain/env:type", + "name": "resolved-env" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "env", + "name": "which-env" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "expand", + "toolchain_type": "//coreutils/toolchain/expand:type", + "name": "resolved-expand" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "expand", + "name": "which-expand" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "expr", + "toolchain_type": "//coreutils/toolchain/expr:type", + "name": "resolved-expr" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "expr", + "name": "which-expr" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "factor", + "toolchain_type": "//coreutils/toolchain/factor:type", + "name": "resolved-factor" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "factor", + "name": "which-factor" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "false", + "toolchain_type": "//coreutils/toolchain/false:type", + "name": "resolved-false" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "false", + "name": "which-false" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "fold", + "toolchain_type": "//coreutils/toolchain/fold:type", + "name": "resolved-fold" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "fold", + "name": "which-fold" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "head", + "toolchain_type": "//coreutils/toolchain/head:type", + "name": "resolved-head" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "head", + "name": "which-head" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "hostname", + "toolchain_type": "//coreutils/toolchain/hostname:type", + "name": "resolved-hostname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "hostname", + "name": "which-hostname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "install", + "toolchain_type": "//coreutils/toolchain/install:type", + "name": "resolved-install" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "install", + "name": "which-install" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "link", + "toolchain_type": "//coreutils/toolchain/link:type", + "name": "resolved-link" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "link", + "name": "which-link" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "ln", + "toolchain_type": "//coreutils/toolchain/ln:type", + "name": "resolved-ln" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "ln", + "name": "which-ln" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "ls", + "toolchain_type": "//coreutils/toolchain/ls:type", + "name": "resolved-ls" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "ls", + "name": "which-ls" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "md5sum", + "toolchain_type": "//coreutils/toolchain/md5sum:type", + "name": "resolved-md5sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "md5sum", + "name": "which-md5sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "mkdir", + "toolchain_type": "//coreutils/toolchain/mkdir:type", + "name": "resolved-mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "mkdir", + "name": "which-mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "mktemp", + "toolchain_type": "//coreutils/toolchain/mktemp:type", + "name": "resolved-mktemp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "mktemp", + "name": "which-mktemp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "more", + "toolchain_type": "//coreutils/toolchain/more:type", + "name": "resolved-more" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "more", + "name": "which-more" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "mv", + "toolchain_type": "//coreutils/toolchain/mv:type", + "name": "resolved-mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "mv", + "name": "which-mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "nl", + "toolchain_type": "//coreutils/toolchain/nl:type", + "name": "resolved-nl" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "nl", + "name": "which-nl" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "nproc", + "toolchain_type": "//coreutils/toolchain/nproc:type", + "name": "resolved-nproc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "nproc", + "name": "which-nproc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "od", + "toolchain_type": "//coreutils/toolchain/od:type", + "name": "resolved-od" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "od", + "name": "which-od" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "paste", + "toolchain_type": "//coreutils/toolchain/paste:type", + "name": "resolved-paste" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "paste", + "name": "which-paste" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "printf", + "toolchain_type": "//coreutils/toolchain/printf:type", + "name": "resolved-printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "printf", + "name": "which-printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "pwd", + "toolchain_type": "//coreutils/toolchain/pwd:type", + "name": "resolved-pwd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "pwd", + "name": "which-pwd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "readlink", + "toolchain_type": "//coreutils/toolchain/readlink:type", + "name": "resolved-readlink" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "readlink", + "name": "which-readlink" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "realpath", + "toolchain_type": "//coreutils/toolchain/realpath:type", + "name": "resolved-realpath" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "realpath", + "name": "which-realpath" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "rm", + "toolchain_type": "//coreutils/toolchain/rm:type", + "name": "resolved-rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "rm", + "name": "which-rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "rmdir", + "toolchain_type": "//coreutils/toolchain/rmdir:type", + "name": "resolved-rmdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "rmdir", + "name": "which-rmdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "seq", + "toolchain_type": "//coreutils/toolchain/seq:type", + "name": "resolved-seq" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "seq", + "name": "which-seq" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sha1sum", + "toolchain_type": "//coreutils/toolchain/sha1sum:type", + "name": "resolved-sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sha1sum", + "name": "which-sha1sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sha256sum", + "toolchain_type": "//coreutils/toolchain/sha256sum:type", + "name": "resolved-sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sha256sum", + "name": "which-sha256sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sha3sum", + "toolchain_type": "//coreutils/toolchain/sha3sum:type", + "name": "resolved-sha3sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sha3sum", + "name": "which-sha3sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sha512sum", + "toolchain_type": "//coreutils/toolchain/sha512sum:type", + "name": "resolved-sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sha512sum", + "name": "which-sha512sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "shred", + "toolchain_type": "//coreutils/toolchain/shred:type", + "name": "resolved-shred" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "shred", + "name": "which-shred" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "shuf", + "toolchain_type": "//coreutils/toolchain/shuf:type", + "name": "resolved-shuf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "shuf", + "name": "which-shuf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sleep", + "toolchain_type": "//coreutils/toolchain/sleep:type", + "name": "resolved-sleep" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sleep", + "name": "which-sleep" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sort", + "toolchain_type": "//coreutils/toolchain/sort:type", + "name": "resolved-sort" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sort", + "name": "which-sort" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "sync", + "toolchain_type": "//coreutils/toolchain/sync:type", + "name": "resolved-sync" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "sync", + "name": "which-sync" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "tac", + "toolchain_type": "//coreutils/toolchain/tac:type", + "name": "resolved-tac" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "tac", + "name": "which-tac" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "tail", + "toolchain_type": "//coreutils/toolchain/tail:type", + "name": "resolved-tail" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "tail", + "name": "which-tail" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "tee", + "toolchain_type": "//coreutils/toolchain/tee:type", + "name": "resolved-tee" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "tee", + "name": "which-tee" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "test", + "toolchain_type": "//coreutils/toolchain/test:type", + "name": "resolved-test" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "test", + "name": "which-test" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "touch", + "toolchain_type": "//coreutils/toolchain/touch:type", + "name": "resolved-touch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "touch", + "name": "which-touch" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "tr", + "toolchain_type": "//coreutils/toolchain/tr:type", + "name": "resolved-tr" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "tr", + "name": "which-tr" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "true", + "toolchain_type": "//coreutils/toolchain/true:type", + "name": "resolved-true" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "true", + "name": "which-true" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "truncate", + "toolchain_type": "//coreutils/toolchain/truncate:type", + "name": "resolved-truncate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "truncate", + "name": "which-truncate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "uname", + "toolchain_type": "//coreutils/toolchain/uname:type", + "name": "resolved-uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "uname", + "name": "which-uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "unexpand", + "toolchain_type": "//coreutils/toolchain/unexpand:type", + "name": "resolved-unexpand" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "unexpand", + "name": "which-unexpand" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "uniq", + "toolchain_type": "//coreutils/toolchain/uniq:type", + "name": "resolved-uniq" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "uniq", + "name": "which-uniq" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "unlink", + "toolchain_type": "//coreutils/toolchain/unlink:type", + "name": "resolved-unlink" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "unlink", + "name": "which-unlink" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "wc", + "toolchain_type": "//coreutils/toolchain/wc:type", + "name": "resolved-wc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "wc", + "name": "which-wc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "whoami", + "toolchain_type": "//coreutils/toolchain/whoami:type", + "name": "resolved-whoami" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "whoami", + "name": "which-whoami" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + }, + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "basename": "yes", + "toolchain_type": "//coreutils/toolchain/yes:type", + "name": "resolved-yes" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "@toolchain_utils//toolchain/local/which:defs.bzl%toolchain_local_which", + "attributeValues": { + "basename": "yes", + "name": "which-yes" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 86, + "column": 14 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_coreutils@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 51, + "column": 23 + }, + "imports": {}, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "coreutils", + "target": "@coreutils" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "line": 52, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "download_utils": "download_utils@1.0.0-beta.2", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_coreutils~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-EikhiyGoZmyrDJOdR+NI0ngZlntHK8gBIEtAdwwrUdOK2Bjd0Kzys+sT5M2uWB0ELwBbZag+sFYh8p5QlgxZcw==", + "strip_prefix": "rules_coreutils-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "bazel_skylib@1.5.0": { + "name": "bazel_skylib", + "version": "1.5.0", + "key": "bazel_skylib@1.5.0", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.8", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "bazel_skylib~1.5.0", + "urls": [ + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + ], + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "aspect_bazel_lib@2.7.0": { + "name": "aspect_bazel_lib", + "version": "2.7.0", + "key": "aspect_bazel_lib@2.7.0", + "repoName": "aspect_bazel_lib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@copy_directory_toolchains//:all", + "@copy_to_directory_toolchains//:all", + "@jq_toolchains//:all", + "@yq_toolchains//:all", + "@coreutils_toolchains//:all", + "@expand_template_toolchains//:all", + "@bats_toolchains//:all", + "@bsd_tar_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_bazel_lib@2.7.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 17, + "column": 37 + }, + "imports": { + "bats_toolchains": "bats_toolchains", + "bsd_tar_toolchains": "bsd_tar_toolchains", + "copy_directory_toolchains": "copy_directory_toolchains", + "copy_to_directory_toolchains": "copy_to_directory_toolchains", + "coreutils_toolchains": "coreutils_toolchains", + "expand_template_toolchains": "expand_template_toolchains", + "jq_toolchains": "jq_toolchains", + "yq_toolchains": "yq_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "copy_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 18, + "column": 36 + } + }, + { + "tagName": "copy_to_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 19, + "column": 39 + } + }, + { + "tagName": "jq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 20, + "column": 24 + } + }, + { + "tagName": "yq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 21, + "column": 24 + } + }, + { + "tagName": "coreutils", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 22, + "column": 31 + } + }, + { + "tagName": "tar", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 23, + "column": 25 + } + }, + { + "tagName": "expand_template", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 24, + "column": 37 + } + }, + { + "tagName": "bats", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 25, + "column": 26 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "io_bazel_stardoc": "stardoc@0.5.4", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0", + "urls": [ + "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.0/bazel-lib-v2.7.0.tar.gz" + ], + "integrity": "sha256-NX2tnSEjJ8NdkkQZDvAQqtMV5z/6G+0aKeIMNy+co0Y=", + "strip_prefix": "bazel-lib-2.7.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/go_dev_dep.patch": "sha256-KgABwDzOT+DugUHn9tHLOz05osnk2FLsS10d5zqG/M0=", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/module_dot_bazel_version.patch": "sha256-WYIBojN6hwiR6VcIhPR+k7VWAR6+4HaKVMA8WKDYwpw=" + }, + "remote_patch_strip": 1 + } + } + }, + "platforms@0.0.8": { + "name": "platforms", + "version": "0.0.8", + "key": "platforms@0.0.8", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "platforms", + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz" + ], + "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "download_utils@1.0.0-beta.2": { + "name": "download_utils", + "version": "1.0.0-beta.2", + "key": "download_utils@1.0.0-beta.2", + "repoName": "download_utils", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "download_utils~1.0.0-beta.2", + "urls": [ + "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" + ], + "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", + "strip_prefix": "download_utils-v1.0.0-beta.2", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_cc@0.0.9": { + "name": "rules_cc", + "version": "0.0.9", + "key": "rules_cc@0.0.9", + "repoName": "rules_cc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@local_config_cc_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", + "extensionName": "cc_configure_extension", + "usingModule": "rules_cc@0.0.9", + "location": { + "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel", + "line": 9, + "column": 29 + }, + "imports": { + "local_config_cc_toolchains": "local_config_cc_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "platforms": "platforms@0.0.8", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_cc~0.0.9", + "urls": [ + "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz" + ], + "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=", + "strip_prefix": "rules_cc-0.0.9", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g=" + }, + "remote_patch_strip": 0 + } + } + }, + "rules_java@7.1.0": { + "name": "rules_java", + "version": "7.1.0", + "key": "rules_java@7.1.0", + "repoName": "rules_java", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains:all", + "@local_jdk//:runtime_toolchain_definition", + "@local_jdk//:bootstrap_runtime_toolchain_definition", + "@remotejdk11_linux_toolchain_config_repo//:all", + "@remotejdk11_linux_aarch64_toolchain_config_repo//:all", + "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all", + "@remotejdk11_linux_s390x_toolchain_config_repo//:all", + "@remotejdk11_macos_toolchain_config_repo//:all", + "@remotejdk11_macos_aarch64_toolchain_config_repo//:all", + "@remotejdk11_win_toolchain_config_repo//:all", + "@remotejdk11_win_arm64_toolchain_config_repo//:all", + "@remotejdk17_linux_toolchain_config_repo//:all", + "@remotejdk17_linux_aarch64_toolchain_config_repo//:all", + "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all", + "@remotejdk17_linux_s390x_toolchain_config_repo//:all", + "@remotejdk17_macos_toolchain_config_repo//:all", + "@remotejdk17_macos_aarch64_toolchain_config_repo//:all", + "@remotejdk17_win_toolchain_config_repo//:all", + "@remotejdk17_win_arm64_toolchain_config_repo//:all", + "@remotejdk21_linux_toolchain_config_repo//:all", + "@remotejdk21_linux_aarch64_toolchain_config_repo//:all", "@remotejdk21_macos_toolchain_config_repo//:all", "@remotejdk21_macos_aarch64_toolchain_config_repo//:all", "@remotejdk21_win_toolchain_config_repo//:all" @@ -8021,9 +11163,9 @@ } ], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "rules_cc": "rules_cc@0.0.9", - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_proto": "rules_proto@4.0.0", "rules_license": "rules_license@0.0.7", "bazel_tools": "bazel_tools@_", @@ -8080,7 +11222,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -8166,7 +11308,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "zlib": "zlib@1.3", "rules_python": "rules_python@0.4.0", "rules_cc": "rules_cc@0.0.9", @@ -8204,7 +11346,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -8257,8 +11399,8 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", - "platforms": "platforms@0.0.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -8276,6 +11418,36 @@ "remote_patch_strip": 0 } } + }, + "stardoc@0.5.4": { + "name": "stardoc", + "version": "0.5.4", + "key": "stardoc@0.5.4", + "repoName": "stardoc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_java": "rules_java@7.1.0", + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "stardoc~0.5.4", + "urls": [ + "https://github.com/bazelbuild/stardoc/releases/download/0.5.4/stardoc-0.5.4.tar.gz" + ], + "integrity": "sha256-7FcTnkZvquVj8vw5YJ2klIpHm7UbbWeu3X2bG4BZxDM=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } } }, "moduleExtensions": { @@ -8296,9 +11468,9 @@ } } }, - "@@ape~1.0.0-beta.6//:MODULE.bazel%_repo_rules": { + "@@ape~1.0.0-beta.7//:MODULE.bazel%_repo_rules": { "general": { - "bzlTransitiveDigest": "Eb1Xl7COaA7o2xZRXuWoU8oqNKYaG3jNe5NZjqS8dmk=", + "bzlTransitiveDigest": "7dmOqqm4azSAaOhBklUWLfQ6Db4qFiDpOgYBZF3yvig=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { @@ -8319,7 +11491,7 @@ "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": "ape~1.0.0-beta.6~_repo_rules~zig-0.11.0-arm64-darwin" + "name": "ape~1.0.0-beta.7~_repo_rules~zig-0.11.0-arm64-darwin" } }, "zig": { @@ -8329,7 +11501,7 @@ "map": { "arm64-darwin": "@zig-0.11.0-arm64-darwin" }, - "name": "ape~1.0.0-beta.6~_repo_rules~zig" + "name": "ape~1.0.0-beta.7~_repo_rules~zig" } }, "ape-m1.c": { @@ -8341,21 +11513,21 @@ "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" + "https://raw.githubusercontent.com/jart/cosmopolitan/3.3.1/ape/ape-m1.c" ], - "name": "ape~1.0.0-beta.6~_repo_rules~ape-m1.c" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-m1.c" } }, "ape-arm64.macho": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/compile:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/compile:repository.bzl", "ruleClassName": "compile", "attributes": { "srcs": [ - "@@ape~1.0.0-beta.6~_repo_rules~ape-m1.c//:ape-m1.c" + "@@ape~1.0.0-beta.7~_repo_rules~ape-m1.c//:ape-m1.c" ], "output": "ape", - "zig": "@@ape~1.0.0-beta.6~_repo_rules~zig//:entrypoint", - "name": "ape~1.0.0-beta.6~_repo_rules~ape-arm64.macho" + "zig": "@@ape~1.0.0-beta.7~_repo_rules~zig//:entrypoint", + "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.macho" } }, "ape-arm64.elf": { @@ -8369,7 +11541,7 @@ "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~1.0.0-beta.6~_repo_rules~ape-arm64.elf" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.elf" } }, "ape-x86_64.elf": { @@ -8383,7 +11555,7 @@ "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~1.0.0-beta.6~_repo_rules~ape-x86_64.elf" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-x86_64.elf" } }, "ape-x86_64.macho": { @@ -8397,14 +11569,14 @@ "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~1.0.0-beta.6~_repo_rules~ape-x86_64.macho" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-x86_64.macho" } }, "ape.pe": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/pe:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/pe:repository.bzl", "ruleClassName": "pe", "attributes": { - "name": "ape~1.0.0-beta.6~_repo_rules~ape.pe" + "name": "ape~1.0.0-beta.7~_repo_rules~ape.pe" } }, "launcher": { @@ -8418,15 +11590,15 @@ "arm64-darwin": "@ape-arm64.macho", "windows": "@ape.pe" }, - "name": "ape~1.0.0-beta.6~_repo_rules~launcher" + "name": "ape~1.0.0-beta.7~_repo_rules~launcher" } }, "resolved-ape": { "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", "ruleClassName": "resolved", "attributes": { - "toolchain_type": "@@ape~1.0.0-beta.6//ape/toolchain/ape:type", - "name": "ape~1.0.0-beta.6~_repo_rules~resolved-ape" + "toolchain_type": "@@ape~1.0.0-beta.7//ape/toolchain/ape:type", + "name": "ape~1.0.0-beta.7~_repo_rules~resolved-ape" } }, "cosmos-awk": { @@ -8440,15 +11612,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-awk" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-awk" } }, "awk": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-awk//:awk", - "name": "ape~1.0.0-beta.6~_repo_rules~awk" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-awk//:awk", + "name": "ape~1.0.0-beta.7~_repo_rules~awk" } }, "cosmos-b2sum": { @@ -8462,15 +11634,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-b2sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum" } }, "b2sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-b2sum//:b2sum", - "name": "ape~1.0.0-beta.6~_repo_rules~b2sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum//:b2sum", + "name": "ape~1.0.0-beta.7~_repo_rules~b2sum" } }, "cosmos-base32": { @@ -8484,15 +11656,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-base32" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-base32" } }, "base32": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-base32//:base32", - "name": "ape~1.0.0-beta.6~_repo_rules~base32" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base32//:base32", + "name": "ape~1.0.0-beta.7~_repo_rules~base32" } }, "cosmos-base64": { @@ -8506,15 +11678,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-base64" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-base64" } }, "base64": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-base64//:base64", - "name": "ape~1.0.0-beta.6~_repo_rules~base64" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base64//:base64", + "name": "ape~1.0.0-beta.7~_repo_rules~base64" } }, "cosmos-basename": { @@ -8528,15 +11700,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-basename" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-basename" } }, "basename": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-basename//:basename", - "name": "ape~1.0.0-beta.6~_repo_rules~basename" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basename//:basename", + "name": "ape~1.0.0-beta.7~_repo_rules~basename" } }, "cosmos-basenc": { @@ -8550,15 +11722,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-basenc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-basenc" } }, "basenc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-basenc//:basenc", - "name": "ape~1.0.0-beta.6~_repo_rules~basenc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basenc//:basenc", + "name": "ape~1.0.0-beta.7~_repo_rules~basenc" } }, "cosmos-bash": { @@ -8572,15 +11744,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-bash" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-bash" } }, "bash": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-bash//:bash", - "name": "ape~1.0.0-beta.6~_repo_rules~bash" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bash//:bash", + "name": "ape~1.0.0-beta.7~_repo_rules~bash" } }, "cosmos-berry": { @@ -8594,15 +11766,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-berry" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-berry" } }, "berry": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-berry//:berry", - "name": "ape~1.0.0-beta.6~_repo_rules~berry" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-berry//:berry", + "name": "ape~1.0.0-beta.7~_repo_rules~berry" } }, "cosmos-brotli": { @@ -8616,15 +11788,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-brotli" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-brotli" } }, "brotli": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-brotli//:brotli", - "name": "ape~1.0.0-beta.6~_repo_rules~brotli" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-brotli//:brotli", + "name": "ape~1.0.0-beta.7~_repo_rules~brotli" } }, "cosmos-bzip2": { @@ -8638,15 +11810,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-bzip2" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2" } }, "bzip2": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-bzip2//:bzip2", - "name": "ape~1.0.0-beta.6~_repo_rules~bzip2" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2//:bzip2", + "name": "ape~1.0.0-beta.7~_repo_rules~bzip2" } }, "cosmos-cat": { @@ -8660,15 +11832,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cat" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cat" } }, "cat": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cat//:cat", - "name": "ape~1.0.0-beta.6~_repo_rules~cat" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cat//:cat", + "name": "ape~1.0.0-beta.7~_repo_rules~cat" } }, "cosmos-chcon": { @@ -8682,15 +11854,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chcon" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chcon" } }, "chcon": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chcon//:chcon", - "name": "ape~1.0.0-beta.6~_repo_rules~chcon" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chcon//:chcon", + "name": "ape~1.0.0-beta.7~_repo_rules~chcon" } }, "cosmos-chgrp": { @@ -8704,15 +11876,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chgrp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp" } }, "chgrp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chgrp//:chgrp", - "name": "ape~1.0.0-beta.6~_repo_rules~chgrp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp//:chgrp", + "name": "ape~1.0.0-beta.7~_repo_rules~chgrp" } }, "cosmos-chown": { @@ -8726,15 +11898,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chown" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chown" } }, "chown": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chown//:chown", - "name": "ape~1.0.0-beta.6~_repo_rules~chown" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chown//:chown", + "name": "ape~1.0.0-beta.7~_repo_rules~chown" } }, "cosmos-chroot": { @@ -8748,15 +11920,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chroot" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chroot" } }, "chroot": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chroot//:chroot", - "name": "ape~1.0.0-beta.6~_repo_rules~chroot" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chroot//:chroot", + "name": "ape~1.0.0-beta.7~_repo_rules~chroot" } }, "cosmos-cksum": { @@ -8770,15 +11942,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cksum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cksum" } }, "cksum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cksum//:cksum", - "name": "ape~1.0.0-beta.6~_repo_rules~cksum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cksum//:cksum", + "name": "ape~1.0.0-beta.7~_repo_rules~cksum" } }, "cosmos-clang-format": { @@ -8792,15 +11964,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-clang-format" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format" } }, "clang-format": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-clang-format//:clang-format", - "name": "ape~1.0.0-beta.6~_repo_rules~clang-format" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format//:clang-format", + "name": "ape~1.0.0-beta.7~_repo_rules~clang-format" } }, "cosmos-cmp": { @@ -8814,15 +11986,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cmp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cmp" } }, "cmp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cmp//:cmp", - "name": "ape~1.0.0-beta.6~_repo_rules~cmp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cmp//:cmp", + "name": "ape~1.0.0-beta.7~_repo_rules~cmp" } }, "cosmos-comm": { @@ -8836,15 +12008,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-comm" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-comm" } }, "comm": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-comm//:comm", - "name": "ape~1.0.0-beta.6~_repo_rules~comm" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-comm//:comm", + "name": "ape~1.0.0-beta.7~_repo_rules~comm" } }, "cosmos-cpuid": { @@ -8858,15 +12030,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cpuid" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid" } }, "cpuid": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cpuid//:cpuid", - "name": "ape~1.0.0-beta.6~_repo_rules~cpuid" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid//:cpuid", + "name": "ape~1.0.0-beta.7~_repo_rules~cpuid" } }, "cosmos-csplit": { @@ -8880,15 +12052,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-csplit" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-csplit" } }, "csplit": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-csplit//:csplit", - "name": "ape~1.0.0-beta.6~_repo_rules~csplit" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-csplit//:csplit", + "name": "ape~1.0.0-beta.7~_repo_rules~csplit" } }, "cosmos-ctags": { @@ -8902,15 +12074,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ctags" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ctags" } }, "ctags": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ctags//:ctags", - "name": "ape~1.0.0-beta.6~_repo_rules~ctags" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ctags//:ctags", + "name": "ape~1.0.0-beta.7~_repo_rules~ctags" } }, "cosmos-curl": { @@ -8924,15 +12096,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-curl" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-curl" } }, "curl": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-curl//:curl", - "name": "ape~1.0.0-beta.6~_repo_rules~curl" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-curl//:curl", + "name": "ape~1.0.0-beta.7~_repo_rules~curl" } }, "cosmos-cut": { @@ -8946,15 +12118,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cut" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cut" } }, "cut": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cut//:cut", - "name": "ape~1.0.0-beta.6~_repo_rules~cut" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cut//:cut", + "name": "ape~1.0.0-beta.7~_repo_rules~cut" } }, "cosmos-dash": { @@ -8968,15 +12140,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dash" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dash" } }, "dash": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dash//:dash", - "name": "ape~1.0.0-beta.6~_repo_rules~dash" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dash//:dash", + "name": "ape~1.0.0-beta.7~_repo_rules~dash" } }, "cosmos-datasette": { @@ -8990,15 +12162,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-datasette" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-datasette" } }, "datasette": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-datasette//:datasette", - "name": "ape~1.0.0-beta.6~_repo_rules~datasette" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-datasette//:datasette", + "name": "ape~1.0.0-beta.7~_repo_rules~datasette" } }, "cosmos-date": { @@ -9012,15 +12184,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-date" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-date" } }, "date": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-date//:date", - "name": "ape~1.0.0-beta.6~_repo_rules~date" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-date//:date", + "name": "ape~1.0.0-beta.7~_repo_rules~date" } }, "cosmos-df": { @@ -9034,15 +12206,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-df" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-df" } }, "df": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-df//:df", - "name": "ape~1.0.0-beta.6~_repo_rules~df" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-df//:df", + "name": "ape~1.0.0-beta.7~_repo_rules~df" } }, "cosmos-dir": { @@ -9056,15 +12228,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dir" } }, "dir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dir//:dir", - "name": "ape~1.0.0-beta.6~_repo_rules~dir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dir//:dir", + "name": "ape~1.0.0-beta.7~_repo_rules~dir" } }, "cosmos-dircolors": { @@ -9078,15 +12250,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dircolors" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors" } }, "dircolors": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dircolors//:dircolors", - "name": "ape~1.0.0-beta.6~_repo_rules~dircolors" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors//:dircolors", + "name": "ape~1.0.0-beta.7~_repo_rules~dircolors" } }, "cosmos-dirname": { @@ -9100,15 +12272,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dirname" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dirname" } }, "dirname": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dirname//:dirname", - "name": "ape~1.0.0-beta.6~_repo_rules~dirname" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dirname//:dirname", + "name": "ape~1.0.0-beta.7~_repo_rules~dirname" } }, "cosmos-diff": { @@ -9122,15 +12294,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-diff" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff" } }, "diff": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-diff//:diff", - "name": "ape~1.0.0-beta.6~_repo_rules~diff" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff//:diff", + "name": "ape~1.0.0-beta.7~_repo_rules~diff" } }, "cosmos-diff3": { @@ -9144,15 +12316,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-diff3" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff3" } }, "diff3": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-diff3//:diff3", - "name": "ape~1.0.0-beta.6~_repo_rules~diff3" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff3//:diff3", + "name": "ape~1.0.0-beta.7~_repo_rules~diff3" } }, "cosmos-du": { @@ -9166,15 +12338,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-du" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-du" } }, "du": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-du//:du", - "name": "ape~1.0.0-beta.6~_repo_rules~du" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-du//:du", + "name": "ape~1.0.0-beta.7~_repo_rules~du" } }, "cosmos-emacs": { @@ -9188,15 +12360,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-emacs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacs" } }, "emacs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-emacs//:emacs", - "name": "ape~1.0.0-beta.6~_repo_rules~emacs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacs//:emacs", + "name": "ape~1.0.0-beta.7~_repo_rules~emacs" } }, "cosmos-emacsclient": { @@ -9210,15 +12382,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-emacsclient" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient" } }, "emacsclient": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-emacsclient//:emacsclient", - "name": "ape~1.0.0-beta.6~_repo_rules~emacsclient" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient//:emacsclient", + "name": "ape~1.0.0-beta.7~_repo_rules~emacsclient" } }, "cosmos-env": { @@ -9232,15 +12404,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-env" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-env" } }, "env": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-env//:env", - "name": "ape~1.0.0-beta.6~_repo_rules~env" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-env//:env", + "name": "ape~1.0.0-beta.7~_repo_rules~env" } }, "cosmos-expand": { @@ -9254,15 +12426,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-expand" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-expand" } }, "expand": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-expand//:expand", - "name": "ape~1.0.0-beta.6~_repo_rules~expand" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expand//:expand", + "name": "ape~1.0.0-beta.7~_repo_rules~expand" } }, "cosmos-expr": { @@ -9276,15 +12448,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-expr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-expr" } }, "expr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-expr//:expr", - "name": "ape~1.0.0-beta.6~_repo_rules~expr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expr//:expr", + "name": "ape~1.0.0-beta.7~_repo_rules~expr" } }, "cosmos-factor": { @@ -9298,15 +12470,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-factor" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-factor" } }, "factor": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-factor//:factor", - "name": "ape~1.0.0-beta.6~_repo_rules~factor" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-factor//:factor", + "name": "ape~1.0.0-beta.7~_repo_rules~factor" } }, "cosmos-false": { @@ -9320,15 +12492,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-false" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-false" } }, "false": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-false//:false", - "name": "ape~1.0.0-beta.6~_repo_rules~false" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-false//:false", + "name": "ape~1.0.0-beta.7~_repo_rules~false" } }, "cosmos-find": { @@ -9342,15 +12514,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-find" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-find" } }, "find": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-find//:find", - "name": "ape~1.0.0-beta.6~_repo_rules~find" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-find//:find", + "name": "ape~1.0.0-beta.7~_repo_rules~find" } }, "cosmos-fmt": { @@ -9364,15 +12536,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-fmt" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-fmt" } }, "fmt": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-fmt//:fmt", - "name": "ape~1.0.0-beta.6~_repo_rules~fmt" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fmt//:fmt", + "name": "ape~1.0.0-beta.7~_repo_rules~fmt" } }, "cosmos-fold": { @@ -9386,15 +12558,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-fold" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-fold" } }, "fold": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-fold//:fold", - "name": "ape~1.0.0-beta.6~_repo_rules~fold" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fold//:fold", + "name": "ape~1.0.0-beta.7~_repo_rules~fold" } }, "cosmos-gmake": { @@ -9408,15 +12580,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-gmake" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gmake" } }, "gmake": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-gmake//:gmake", - "name": "ape~1.0.0-beta.6~_repo_rules~gmake" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gmake//:gmake", + "name": "ape~1.0.0-beta.7~_repo_rules~gmake" } }, "cosmos-greenbean": { @@ -9430,15 +12602,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-greenbean" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean" } }, "greenbean": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-greenbean//:greenbean", - "name": "ape~1.0.0-beta.6~_repo_rules~greenbean" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean//:greenbean", + "name": "ape~1.0.0-beta.7~_repo_rules~greenbean" } }, "cosmos-grep": { @@ -9452,15 +12624,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-grep" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-grep" } }, "grep": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-grep//:grep", - "name": "ape~1.0.0-beta.6~_repo_rules~grep" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-grep//:grep", + "name": "ape~1.0.0-beta.7~_repo_rules~grep" } }, "cosmos-groups": { @@ -9474,15 +12646,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-groups" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-groups" } }, "groups": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-groups//:groups", - "name": "ape~1.0.0-beta.6~_repo_rules~groups" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-groups//:groups", + "name": "ape~1.0.0-beta.7~_repo_rules~groups" } }, "cosmos-head": { @@ -9496,15 +12668,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-head" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-head" } }, "head": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-head//:head", - "name": "ape~1.0.0-beta.6~_repo_rules~head" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-head//:head", + "name": "ape~1.0.0-beta.7~_repo_rules~head" } }, "cosmos-id": { @@ -9518,15 +12690,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-id" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-id" } }, "id": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-id//:id", - "name": "ape~1.0.0-beta.6~_repo_rules~id" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-id//:id", + "name": "ape~1.0.0-beta.7~_repo_rules~id" } }, "cosmos-install": { @@ -9540,15 +12712,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-install" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-install" } }, "install": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-install//:install", - "name": "ape~1.0.0-beta.6~_repo_rules~install" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-install//:install", + "name": "ape~1.0.0-beta.7~_repo_rules~install" } }, "cosmos-join": { @@ -9562,15 +12734,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-join" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-join" } }, "join": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-join//:join", - "name": "ape~1.0.0-beta.6~_repo_rules~join" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-join//:join", + "name": "ape~1.0.0-beta.7~_repo_rules~join" } }, "cosmos-kill": { @@ -9584,15 +12756,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-kill" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-kill" } }, "kill": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-kill//:kill", - "name": "ape~1.0.0-beta.6~_repo_rules~kill" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-kill//:kill", + "name": "ape~1.0.0-beta.7~_repo_rules~kill" } }, "cosmos-less": { @@ -9606,15 +12778,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-less" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-less" } }, "less": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-less//:less", - "name": "ape~1.0.0-beta.6~_repo_rules~less" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-less//:less", + "name": "ape~1.0.0-beta.7~_repo_rules~less" } }, "cosmos-life": { @@ -9628,15 +12800,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-life" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-life" } }, "life": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-life//:life", - "name": "ape~1.0.0-beta.6~_repo_rules~life" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-life//:life", + "name": "ape~1.0.0-beta.7~_repo_rules~life" } }, "cosmos-link": { @@ -9650,15 +12822,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-link" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-link" } }, "link": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-link//:link", - "name": "ape~1.0.0-beta.6~_repo_rules~link" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-link//:link", + "name": "ape~1.0.0-beta.7~_repo_rules~link" } }, "cosmos-links": { @@ -9672,15 +12844,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-links" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-links" } }, "links": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-links//:links", - "name": "ape~1.0.0-beta.6~_repo_rules~links" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-links//:links", + "name": "ape~1.0.0-beta.7~_repo_rules~links" } }, "cosmos-ln": { @@ -9694,15 +12866,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ln" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ln" } }, "ln": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ln//:ln", - "name": "ape~1.0.0-beta.6~_repo_rules~ln" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ln//:ln", + "name": "ape~1.0.0-beta.7~_repo_rules~ln" } }, "cosmos-locate": { @@ -9716,15 +12888,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-locate" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-locate" } }, "locate": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-locate//:locate", - "name": "ape~1.0.0-beta.6~_repo_rules~locate" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-locate//:locate", + "name": "ape~1.0.0-beta.7~_repo_rules~locate" } }, "cosmos-logname": { @@ -9738,15 +12910,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-logname" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-logname" } }, "logname": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-logname//:logname", - "name": "ape~1.0.0-beta.6~_repo_rules~logname" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-logname//:logname", + "name": "ape~1.0.0-beta.7~_repo_rules~logname" } }, "cosmos-ls": { @@ -9760,15 +12932,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ls" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ls" } }, "ls": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ls//:ls", - "name": "ape~1.0.0-beta.6~_repo_rules~ls" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ls//:ls", + "name": "ape~1.0.0-beta.7~_repo_rules~ls" } }, "cosmos-lua": { @@ -9782,15 +12954,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-lua" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-lua" } }, "lua": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-lua//:lua", - "name": "ape~1.0.0-beta.6~_repo_rules~lua" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lua//:lua", + "name": "ape~1.0.0-beta.7~_repo_rules~lua" } }, "cosmos-lz4": { @@ -9804,15 +12976,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-lz4" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-lz4" } }, "lz4": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-lz4//:lz4", - "name": "ape~1.0.0-beta.6~_repo_rules~lz4" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lz4//:lz4", + "name": "ape~1.0.0-beta.7~_repo_rules~lz4" } }, "cosmos-make": { @@ -9826,15 +12998,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-make" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-make" } }, "make": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-make//:make", - "name": "ape~1.0.0-beta.6~_repo_rules~make" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-make//:make", + "name": "ape~1.0.0-beta.7~_repo_rules~make" } }, "cosmos-md5sum": { @@ -9848,15 +13020,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-md5sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum" } }, "md5sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-md5sum//:md5sum", - "name": "ape~1.0.0-beta.6~_repo_rules~md5sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum//:md5sum", + "name": "ape~1.0.0-beta.7~_repo_rules~md5sum" } }, "cosmos-mkfifo": { @@ -9870,15 +13042,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mkfifo" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo" } }, "mkfifo": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mkfifo//:mkfifo", - "name": "ape~1.0.0-beta.6~_repo_rules~mkfifo" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo//:mkfifo", + "name": "ape~1.0.0-beta.7~_repo_rules~mkfifo" } }, "cosmos-mknod": { @@ -9892,15 +13064,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mknod" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mknod" } }, "mknod": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mknod//:mknod", - "name": "ape~1.0.0-beta.6~_repo_rules~mknod" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mknod//:mknod", + "name": "ape~1.0.0-beta.7~_repo_rules~mknod" } }, "cosmos-mktemp": { @@ -9914,15 +13086,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mktemp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp" } }, "mktemp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mktemp//:mktemp", - "name": "ape~1.0.0-beta.6~_repo_rules~mktemp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp//:mktemp", + "name": "ape~1.0.0-beta.7~_repo_rules~mktemp" } }, "cosmos-mktemper": { @@ -9936,15 +13108,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mktemper" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper" } }, "mktemper": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mktemper//:mktemper", - "name": "ape~1.0.0-beta.6~_repo_rules~mktemper" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper//:mktemper", + "name": "ape~1.0.0-beta.7~_repo_rules~mktemper" } }, "cosmos-nano": { @@ -9958,15 +13130,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nano" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nano" } }, "nano": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nano//:nano", - "name": "ape~1.0.0-beta.6~_repo_rules~nano" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nano//:nano", + "name": "ape~1.0.0-beta.7~_repo_rules~nano" } }, "cosmos-nesemu1": { @@ -9980,15 +13152,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nesemu1" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1" } }, "nesemu1": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nesemu1//:nesemu1", - "name": "ape~1.0.0-beta.6~_repo_rules~nesemu1" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1//:nesemu1", + "name": "ape~1.0.0-beta.7~_repo_rules~nesemu1" } }, "cosmos-nice": { @@ -10002,15 +13174,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nice" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nice" } }, "nice": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nice//:nice", - "name": "ape~1.0.0-beta.6~_repo_rules~nice" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nice//:nice", + "name": "ape~1.0.0-beta.7~_repo_rules~nice" } }, "cosmos-ninja": { @@ -10024,15 +13196,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ninja" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ninja" } }, "ninja": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ninja//:ninja", - "name": "ape~1.0.0-beta.6~_repo_rules~ninja" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ninja//:ninja", + "name": "ape~1.0.0-beta.7~_repo_rules~ninja" } }, "cosmos-nl": { @@ -10046,15 +13218,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nl" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nl" } }, "nl": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nl//:nl", - "name": "ape~1.0.0-beta.6~_repo_rules~nl" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nl//:nl", + "name": "ape~1.0.0-beta.7~_repo_rules~nl" } }, "cosmos-nohup": { @@ -10068,15 +13240,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nohup" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nohup" } }, "nohup": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nohup//:nohup", - "name": "ape~1.0.0-beta.6~_repo_rules~nohup" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nohup//:nohup", + "name": "ape~1.0.0-beta.7~_repo_rules~nohup" } }, "cosmos-nproc": { @@ -10090,15 +13262,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nproc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nproc" } }, "nproc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nproc//:nproc", - "name": "ape~1.0.0-beta.6~_repo_rules~nproc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nproc//:nproc", + "name": "ape~1.0.0-beta.7~_repo_rules~nproc" } }, "cosmos-numfmt": { @@ -10112,15 +13284,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-numfmt" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt" } }, "numfmt": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-numfmt//:numfmt", - "name": "ape~1.0.0-beta.6~_repo_rules~numfmt" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt//:numfmt", + "name": "ape~1.0.0-beta.7~_repo_rules~numfmt" } }, "cosmos-od": { @@ -10134,15 +13306,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-od" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-od" } }, "od": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-od//:od", - "name": "ape~1.0.0-beta.6~_repo_rules~od" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-od//:od", + "name": "ape~1.0.0-beta.7~_repo_rules~od" } }, "cosmos-paste": { @@ -10156,15 +13328,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-paste" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-paste" } }, "paste": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-paste//:paste", - "name": "ape~1.0.0-beta.6~_repo_rules~paste" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-paste//:paste", + "name": "ape~1.0.0-beta.7~_repo_rules~paste" } }, "cosmos-patch": { @@ -10178,15 +13350,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-patch" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-patch" } }, "patch": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-patch//:patch", - "name": "ape~1.0.0-beta.6~_repo_rules~patch" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-patch//:patch", + "name": "ape~1.0.0-beta.7~_repo_rules~patch" } }, "cosmos-pathchk": { @@ -10200,37 +13372,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pathchk" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk" } }, "pathchk": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pathchk//:pathchk", - "name": "ape~1.0.0-beta.6~_repo_rules~pathchk" - } - }, - "cosmos-pigz": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-pvWipO8MGunU157lNj5pkNwMwDYSUFjtx7nWoNxBDw8=", - "output": "pigz", - "urls": [ - "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pigz" - } - }, - "pigz": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pigz//:pigz", - "name": "ape~1.0.0-beta.6~_repo_rules~pigz" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk//:pathchk", + "name": "ape~1.0.0-beta.7~_repo_rules~pathchk" } }, "cosmos-pinky": { @@ -10244,15 +13394,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pinky" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pinky" } }, "pinky": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pinky//:pinky", - "name": "ape~1.0.0-beta.6~_repo_rules~pinky" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pinky//:pinky", + "name": "ape~1.0.0-beta.7~_repo_rules~pinky" } }, "cosmos-pledge": { @@ -10266,15 +13416,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pledge" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pledge" } }, "pledge": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pledge//:pledge", - "name": "ape~1.0.0-beta.6~_repo_rules~pledge" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pledge//:pledge", + "name": "ape~1.0.0-beta.7~_repo_rules~pledge" } }, "cosmos-pr": { @@ -10288,15 +13438,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pr" } }, "pr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pr//:pr", - "name": "ape~1.0.0-beta.6~_repo_rules~pr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pr//:pr", + "name": "ape~1.0.0-beta.7~_repo_rules~pr" } }, "cosmos-printenv": { @@ -10310,15 +13460,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-printenv" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printenv" } }, "printenv": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-printenv//:printenv", - "name": "ape~1.0.0-beta.6~_repo_rules~printenv" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printenv//:printenv", + "name": "ape~1.0.0-beta.7~_repo_rules~printenv" } }, "cosmos-printimage": { @@ -10332,15 +13482,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-printimage" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printimage" } }, "printimage": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-printimage//:printimage", - "name": "ape~1.0.0-beta.6~_repo_rules~printimage" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printimage//:printimage", + "name": "ape~1.0.0-beta.7~_repo_rules~printimage" } }, "cosmos-ptx": { @@ -10354,15 +13504,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ptx" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ptx" } }, "ptx": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ptx//:ptx", - "name": "ape~1.0.0-beta.6~_repo_rules~ptx" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ptx//:ptx", + "name": "ape~1.0.0-beta.7~_repo_rules~ptx" } }, "cosmos-pwd": { @@ -10376,15 +13526,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pwd" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pwd" } }, "pwd": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pwd//:pwd", - "name": "ape~1.0.0-beta.6~_repo_rules~pwd" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pwd//:pwd", + "name": "ape~1.0.0-beta.7~_repo_rules~pwd" } }, "cosmos-pypack1": { @@ -10398,15 +13548,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pypack1" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1" } }, "pypack1": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pypack1//:pypack1", - "name": "ape~1.0.0-beta.6~_repo_rules~pypack1" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1//:pypack1", + "name": "ape~1.0.0-beta.7~_repo_rules~pypack1" } }, "cosmos-python": { @@ -10420,15 +13570,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-python" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-python" } }, "python": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-python//:python", - "name": "ape~1.0.0-beta.6~_repo_rules~python" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-python//:python", + "name": "ape~1.0.0-beta.7~_repo_rules~python" } }, "cosmos-qjs": { @@ -10442,15 +13592,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-qjs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-qjs" } }, "qjs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-qjs//:qjs", - "name": "ape~1.0.0-beta.6~_repo_rules~qjs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-qjs//:qjs", + "name": "ape~1.0.0-beta.7~_repo_rules~qjs" } }, "cosmos-readlink": { @@ -10464,15 +13614,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-readlink" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-readlink" } }, "readlink": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-readlink//:readlink", - "name": "ape~1.0.0-beta.6~_repo_rules~readlink" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-readlink//:readlink", + "name": "ape~1.0.0-beta.7~_repo_rules~readlink" } }, "cosmos-realpath": { @@ -10486,15 +13636,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-realpath" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-realpath" } }, "realpath": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-realpath//:realpath", - "name": "ape~1.0.0-beta.6~_repo_rules~realpath" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-realpath//:realpath", + "name": "ape~1.0.0-beta.7~_repo_rules~realpath" } }, "cosmos-redbean": { @@ -10508,15 +13658,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-redbean" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-redbean" } }, "redbean": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-redbean//:redbean", - "name": "ape~1.0.0-beta.6~_repo_rules~redbean" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-redbean//:redbean", + "name": "ape~1.0.0-beta.7~_repo_rules~redbean" } }, "cosmos-rmdir": { @@ -10530,15 +13680,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-rmdir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir" } }, "rmdir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-rmdir//:rmdir", - "name": "ape~1.0.0-beta.6~_repo_rules~rmdir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir//:rmdir", + "name": "ape~1.0.0-beta.7~_repo_rules~rmdir" } }, "cosmos-rsync": { @@ -10552,15 +13702,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-rsync" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rsync" } }, "rsync": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-rsync//:rsync", - "name": "ape~1.0.0-beta.6~_repo_rules~rsync" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rsync//:rsync", + "name": "ape~1.0.0-beta.7~_repo_rules~rsync" } }, "cosmos-runcon": { @@ -10574,15 +13724,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-runcon" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-runcon" } }, "runcon": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-runcon//:runcon", - "name": "ape~1.0.0-beta.6~_repo_rules~runcon" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-runcon//:runcon", + "name": "ape~1.0.0-beta.7~_repo_rules~runcon" } }, "cosmos-script": { @@ -10596,15 +13746,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-script" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-script" } }, "script": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-script//:script", - "name": "ape~1.0.0-beta.6~_repo_rules~script" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-script//:script", + "name": "ape~1.0.0-beta.7~_repo_rules~script" } }, "cosmos-sdiff": { @@ -10618,15 +13768,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sdiff" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff" } }, "sdiff": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sdiff//:sdiff", - "name": "ape~1.0.0-beta.6~_repo_rules~sdiff" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff//:sdiff", + "name": "ape~1.0.0-beta.7~_repo_rules~sdiff" } }, "cosmos-sed": { @@ -10640,15 +13790,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sed" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sed" } }, "sed": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sed//:sed", - "name": "ape~1.0.0-beta.6~_repo_rules~sed" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sed//:sed", + "name": "ape~1.0.0-beta.7~_repo_rules~sed" } }, "cosmos-seq": { @@ -10662,15 +13812,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-seq" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-seq" } }, "seq": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-seq//:seq", - "name": "ape~1.0.0-beta.6~_repo_rules~seq" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-seq//:seq", + "name": "ape~1.0.0-beta.7~_repo_rules~seq" } }, "cosmos-sha1sum": { @@ -10684,15 +13834,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha1sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum" } }, "sha1sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha1sum//:sha1sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha1sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum//:sha1sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha1sum" } }, "cosmos-sha224sum": { @@ -10706,15 +13856,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha224sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum" } }, "sha224sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha224sum//:sha224sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha224sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum//:sha224sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha224sum" } }, "cosmos-sha256sum": { @@ -10728,15 +13878,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha256sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum" } }, "sha256sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha256sum//:sha256sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha256sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum//:sha256sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha256sum" } }, "cosmos-sha384sum": { @@ -10750,15 +13900,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha384sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum" } }, "sha384sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha384sum//:sha384sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha384sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum//:sha384sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha384sum" } }, "cosmos-sha512sum": { @@ -10772,15 +13922,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha512sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum" } }, "sha512sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha512sum//:sha512sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha512sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum//:sha512sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha512sum" } }, "cosmos-shred": { @@ -10794,15 +13944,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-shred" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-shred" } }, "shred": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-shred//:shred", - "name": "ape~1.0.0-beta.6~_repo_rules~shred" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shred//:shred", + "name": "ape~1.0.0-beta.7~_repo_rules~shred" } }, "cosmos-shuf": { @@ -10816,15 +13966,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-shuf" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-shuf" } }, "shuf": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-shuf//:shuf", - "name": "ape~1.0.0-beta.6~_repo_rules~shuf" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shuf//:shuf", + "name": "ape~1.0.0-beta.7~_repo_rules~shuf" } }, "cosmos-sleep": { @@ -10838,15 +13988,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sleep" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sleep" } }, "sleep": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sleep//:sleep", - "name": "ape~1.0.0-beta.6~_repo_rules~sleep" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sleep//:sleep", + "name": "ape~1.0.0-beta.7~_repo_rules~sleep" } }, "cosmos-sort": { @@ -10860,15 +14010,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sort" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sort" } }, "sort": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sort//:sort", - "name": "ape~1.0.0-beta.6~_repo_rules~sort" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sort//:sort", + "name": "ape~1.0.0-beta.7~_repo_rules~sort" } }, "cosmos-split": { @@ -10882,15 +14032,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-split" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-split" } }, "split": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-split//:split", - "name": "ape~1.0.0-beta.6~_repo_rules~split" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-split//:split", + "name": "ape~1.0.0-beta.7~_repo_rules~split" } }, "cosmos-sqlite3": { @@ -10904,15 +14054,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sqlite3" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3" } }, "sqlite3": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sqlite3//:sqlite3", - "name": "ape~1.0.0-beta.6~_repo_rules~sqlite3" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3//:sqlite3", + "name": "ape~1.0.0-beta.7~_repo_rules~sqlite3" } }, "cosmos-stat": { @@ -10926,15 +14076,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-stat" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-stat" } }, "stat": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-stat//:stat", - "name": "ape~1.0.0-beta.6~_repo_rules~stat" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stat//:stat", + "name": "ape~1.0.0-beta.7~_repo_rules~stat" } }, "cosmos-stty": { @@ -10948,15 +14098,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-stty" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-stty" } }, "stty": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-stty//:stty", - "name": "ape~1.0.0-beta.6~_repo_rules~stty" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stty//:stty", + "name": "ape~1.0.0-beta.7~_repo_rules~stty" } }, "cosmos-sum": { @@ -10970,15 +14120,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sum" } }, "sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sum//:sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sum//:sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sum" } }, "cosmos-sync": { @@ -10992,15 +14142,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sync" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sync" } }, "sync": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sync//:sync", - "name": "ape~1.0.0-beta.6~_repo_rules~sync" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sync//:sync", + "name": "ape~1.0.0-beta.7~_repo_rules~sync" } }, "cosmos-tac": { @@ -11014,15 +14164,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tac" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tac" } }, "tac": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tac//:tac", - "name": "ape~1.0.0-beta.6~_repo_rules~tac" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tac//:tac", + "name": "ape~1.0.0-beta.7~_repo_rules~tac" } }, "cosmos-tail": { @@ -11036,15 +14186,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tail" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tail" } }, "tail": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tail//:tail", - "name": "ape~1.0.0-beta.6~_repo_rules~tail" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tail//:tail", + "name": "ape~1.0.0-beta.7~_repo_rules~tail" } }, "cosmos-tar": { @@ -11058,15 +14208,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tar" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tar" } }, "tar": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tar//:tar", - "name": "ape~1.0.0-beta.6~_repo_rules~tar" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tar//:tar", + "name": "ape~1.0.0-beta.7~_repo_rules~tar" } }, "cosmos-tee": { @@ -11080,15 +14230,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tee" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tee" } }, "tee": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tee//:tee", - "name": "ape~1.0.0-beta.6~_repo_rules~tee" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tee//:tee", + "name": "ape~1.0.0-beta.7~_repo_rules~tee" } }, "cosmos-test": { @@ -11102,15 +14252,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-test" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-test" } }, "test": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-test//:test", - "name": "ape~1.0.0-beta.6~_repo_rules~test" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-test//:test", + "name": "ape~1.0.0-beta.7~_repo_rules~test" } }, "cosmos-tidy": { @@ -11124,15 +14274,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tidy" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tidy" } }, "tidy": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tidy//:tidy", - "name": "ape~1.0.0-beta.6~_repo_rules~tidy" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tidy//:tidy", + "name": "ape~1.0.0-beta.7~_repo_rules~tidy" } }, "cosmos-timeout": { @@ -11146,15 +14296,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-timeout" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-timeout" } }, "timeout": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-timeout//:timeout", - "name": "ape~1.0.0-beta.6~_repo_rules~timeout" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-timeout//:timeout", + "name": "ape~1.0.0-beta.7~_repo_rules~timeout" } }, "cosmos-tmux": { @@ -11168,15 +14318,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tmux" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tmux" } }, "tmux": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tmux//:tmux", - "name": "ape~1.0.0-beta.6~_repo_rules~tmux" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tmux//:tmux", + "name": "ape~1.0.0-beta.7~_repo_rules~tmux" } }, "cosmos-touch": { @@ -11190,15 +14340,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-touch" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-touch" } }, "touch": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-touch//:touch", - "name": "ape~1.0.0-beta.6~_repo_rules~touch" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-touch//:touch", + "name": "ape~1.0.0-beta.7~_repo_rules~touch" } }, "cosmos-tr": { @@ -11212,15 +14362,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tr" } }, "tr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tr//:tr", - "name": "ape~1.0.0-beta.6~_repo_rules~tr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tr//:tr", + "name": "ape~1.0.0-beta.7~_repo_rules~tr" } }, "cosmos-tree": { @@ -11234,15 +14384,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tree" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tree" } }, "tree": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tree//:tree", - "name": "ape~1.0.0-beta.6~_repo_rules~tree" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tree//:tree", + "name": "ape~1.0.0-beta.7~_repo_rules~tree" } }, "cosmos-true": { @@ -11256,15 +14406,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-true" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-true" } }, "true": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-true//:true", - "name": "ape~1.0.0-beta.6~_repo_rules~true" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-true//:true", + "name": "ape~1.0.0-beta.7~_repo_rules~true" } }, "cosmos-truncate": { @@ -11278,15 +14428,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-truncate" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-truncate" } }, "truncate": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-truncate//:truncate", - "name": "ape~1.0.0-beta.6~_repo_rules~truncate" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-truncate//:truncate", + "name": "ape~1.0.0-beta.7~_repo_rules~truncate" } }, "cosmos-tsort": { @@ -11300,15 +14450,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tsort" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tsort" } }, "tsort": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tsort//:tsort", - "name": "ape~1.0.0-beta.6~_repo_rules~tsort" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tsort//:tsort", + "name": "ape~1.0.0-beta.7~_repo_rules~tsort" } }, "cosmos-tty": { @@ -11322,15 +14472,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tty" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tty" } }, "tty": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tty//:tty", - "name": "ape~1.0.0-beta.6~_repo_rules~tty" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tty//:tty", + "name": "ape~1.0.0-beta.7~_repo_rules~tty" } }, "cosmos-ttyinfo": { @@ -11344,15 +14494,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ttyinfo" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo" } }, "ttyinfo": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ttyinfo//:ttyinfo", - "name": "ape~1.0.0-beta.6~_repo_rules~ttyinfo" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo//:ttyinfo", + "name": "ape~1.0.0-beta.7~_repo_rules~ttyinfo" } }, "cosmos-unbourne": { @@ -11366,15 +14516,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unbourne" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne" } }, "unbourne": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unbourne//:unbourne", - "name": "ape~1.0.0-beta.6~_repo_rules~unbourne" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne//:unbourne", + "name": "ape~1.0.0-beta.7~_repo_rules~unbourne" } }, "cosmos-unexpand": { @@ -11388,15 +14538,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unexpand" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand" } }, "unexpand": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unexpand//:unexpand", - "name": "ape~1.0.0-beta.6~_repo_rules~unexpand" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand//:unexpand", + "name": "ape~1.0.0-beta.7~_repo_rules~unexpand" } }, "cosmos-uniq": { @@ -11410,15 +14560,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-uniq" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uniq" } }, "uniq": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-uniq//:uniq", - "name": "ape~1.0.0-beta.6~_repo_rules~uniq" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uniq//:uniq", + "name": "ape~1.0.0-beta.7~_repo_rules~uniq" } }, "cosmos-unlink": { @@ -11432,15 +14582,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unlink" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unlink" } }, "unlink": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unlink//:unlink", - "name": "ape~1.0.0-beta.6~_repo_rules~unlink" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unlink//:unlink", + "name": "ape~1.0.0-beta.7~_repo_rules~unlink" } }, "cosmos-unzip": { @@ -11454,15 +14604,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unzip" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unzip" } }, "unzip": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unzip//:unzip", - "name": "ape~1.0.0-beta.6~_repo_rules~unzip" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unzip//:unzip", + "name": "ape~1.0.0-beta.7~_repo_rules~unzip" } }, "cosmos-uptime": { @@ -11476,15 +14626,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-uptime" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uptime" } }, "uptime": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-uptime//:uptime", - "name": "ape~1.0.0-beta.6~_repo_rules~uptime" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uptime//:uptime", + "name": "ape~1.0.0-beta.7~_repo_rules~uptime" } }, "cosmos-users": { @@ -11498,15 +14648,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-users" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-users" } }, "users": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-users//:users", - "name": "ape~1.0.0-beta.6~_repo_rules~users" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-users//:users", + "name": "ape~1.0.0-beta.7~_repo_rules~users" } }, "cosmos-vdir": { @@ -11520,15 +14670,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-vdir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-vdir" } }, "vdir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-vdir//:vdir", - "name": "ape~1.0.0-beta.6~_repo_rules~vdir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vdir//:vdir", + "name": "ape~1.0.0-beta.7~_repo_rules~vdir" } }, "cosmos-verynice": { @@ -11542,15 +14692,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-verynice" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-verynice" } }, "verynice": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-verynice//:verynice", - "name": "ape~1.0.0-beta.6~_repo_rules~verynice" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-verynice//:verynice", + "name": "ape~1.0.0-beta.7~_repo_rules~verynice" } }, "cosmos-vim": { @@ -11564,257 +14714,499 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-vim" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-vim" + } + }, + "vim": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vim//:vim", + "name": "ape~1.0.0-beta.7~_repo_rules~vim" + } + }, + "cosmos-wall": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Fx/k6dM6iCdaKuC56Q2QoxhMcC0LaHacZRfT+EWTHHA=", + "output": "wall", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wall" + } + }, + "wall": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wall//:wall", + "name": "ape~1.0.0-beta.7~_repo_rules~wall" + } + }, + "cosmos-wc": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XRpXEGIZ/9Ow5IrHP+dbo5dc1hHqKZ1ewqJLM1CX9bg=", + "output": "wc", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wc" + } + }, + "wc": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wc//:wc", + "name": "ape~1.0.0-beta.7~_repo_rules~wc" + } + }, + "cosmos-wget": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CHZFKvpbmc5AmpkazKk0H0MeYE8wTl7aANjbU9NKDb0=", + "output": "wget", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wget" + } + }, + "wget": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wget//:wget", + "name": "ape~1.0.0-beta.7~_repo_rules~wget" + } + }, + "cosmos-who": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-W+CBIPsR2NBc6xXbom6zyzNCvHKmE+py/iGlX5ewNok=", + "output": "who", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-who" + } + }, + "who": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-who//:who", + "name": "ape~1.0.0-beta.7~_repo_rules~who" + } + }, + "cosmos-whoami": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yjAXVvBgVSkLRpNve2AC9srTCSdieNLjh63wFpgxM88=", + "output": "whoami", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-whoami" + } + }, + "whoami": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-whoami//:whoami", + "name": "ape~1.0.0-beta.7~_repo_rules~whoami" + } + }, + "cosmos-xargs": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-A34zn2hiDh2xMdPY82s1ghm/xzDUEXqxy6IVqOJv9vY=", + "output": "xargs", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xargs" + } + }, + "xargs": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xargs//:xargs", + "name": "ape~1.0.0-beta.7~_repo_rules~xargs" + } + }, + "cosmos-xz": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-84VVLEvkMFVKsNTKX8IZ90XAqebHofJ4bsy3J3f+Xe0=", + "output": "xz", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xz" + } + }, + "xz": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xz//:xz", + "name": "ape~1.0.0-beta.7~_repo_rules~xz" + } + }, + "cosmos-yes": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-J+N2zXEIyM9SF5Xqmpye6hISJi40Xj8343AQUL9jOiI=", + "output": "yes", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-yes" + } + }, + "yes": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-yes//:yes", + "name": "ape~1.0.0-beta.7~_repo_rules~yes" + } + }, + "cosmos-zip": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hxobwz7sl7w+NmS45mBoFd0sVSQ3haPeoPW5S7WBUN8=", + "output": "zip", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zip" + } + }, + "zip": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zip//:zip", + "name": "ape~1.0.0-beta.7~_repo_rules~zip" + } + }, + "cosmos-zsh": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zYH33XZzUvk6v5DiLKe5lKTKx0IsRW7zJWIeQmhM0f4=", + "output": "zsh", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zsh" + } + }, + "zsh": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zsh//:zsh", + "name": "ape~1.0.0-beta.7~_repo_rules~zsh" + } + }, + "cosmos-zstd": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UQRCbSiHGWmBr2qsbnsCGQjIyhZG2ilfx9Iyxv6KbzQ=", + "output": "zstd", + "urls": [ + "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zstd" } }, - "vim": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "zstd": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-vim//:vim", - "name": "ape~1.0.0-beta.6~_repo_rules~vim" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zstd//:zstd", + "name": "ape~1.0.0-beta.7~_repo_rules~zstd" } }, - "cosmos-wall": { + "cosmos-chmod": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-Fx/k6dM6iCdaKuC56Q2QoxhMcC0LaHacZRfT+EWTHHA=", - "output": "wall", + "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", + "output": "chmod", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-wall" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chmod" } }, - "wall": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "chmod": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wall//:wall", - "name": "ape~1.0.0-beta.6~_repo_rules~wall" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chmod//:chmod", + "name": "ape~1.0.0-beta.7~_repo_rules~chmod" } }, - "cosmos-wc": { + "cosmos-cp": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-XRpXEGIZ/9Ow5IrHP+dbo5dc1hHqKZ1ewqJLM1CX9bg=", - "output": "wc", + "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", + "output": "cp", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-wc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cp" } }, - "wc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "cp": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wc//:wc", - "name": "ape~1.0.0-beta.6~_repo_rules~wc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cp//:cp", + "name": "ape~1.0.0-beta.7~_repo_rules~cp" } }, - "cosmos-wget": { + "cosmos-dd": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-CHZFKvpbmc5AmpkazKk0H0MeYE8wTl7aANjbU9NKDb0=", - "output": "wget", + "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", + "output": "dd", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-wget" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dd" } }, - "wget": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "dd": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wget//:wget", - "name": "ape~1.0.0-beta.6~_repo_rules~wget" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dd//:dd", + "name": "ape~1.0.0-beta.7~_repo_rules~dd" } }, - "cosmos-who": { + "cosmos-echo": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-W+CBIPsR2NBc6xXbom6zyzNCvHKmE+py/iGlX5ewNok=", - "output": "who", + "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", + "output": "echo", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-who" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-echo" } }, - "who": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "echo": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-who//:who", - "name": "ape~1.0.0-beta.6~_repo_rules~who" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-echo//:echo", + "name": "ape~1.0.0-beta.7~_repo_rules~echo" } }, - "cosmos-whoami": { + "cosmos-gzip": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-yjAXVvBgVSkLRpNve2AC9srTCSdieNLjh63wFpgxM88=", - "output": "whoami", + "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", + "output": "gzip", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-whoami" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gzip" } }, - "whoami": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "gzip": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-whoami//:whoami", - "name": "ape~1.0.0-beta.6~_repo_rules~whoami" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gzip//:gzip", + "name": "ape~1.0.0-beta.7~_repo_rules~gzip" } }, - "cosmos-xargs": { + "cosmos-mkdir": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-A34zn2hiDh2xMdPY82s1ghm/xzDUEXqxy6IVqOJv9vY=", - "output": "xargs", + "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", + "output": "mkdir", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-xargs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir" } }, - "xargs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "mkdir": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-xargs//:xargs", - "name": "ape~1.0.0-beta.6~_repo_rules~xargs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir//:mkdir", + "name": "ape~1.0.0-beta.7~_repo_rules~mkdir" } }, - "cosmos-xz": { + "cosmos-mv": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-84VVLEvkMFVKsNTKX8IZ90XAqebHofJ4bsy3J3f+Xe0=", - "output": "xz", + "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", + "output": "mv", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-xz" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mv" } }, - "xz": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "mv": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-xz//:xz", - "name": "ape~1.0.0-beta.6~_repo_rules~xz" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mv//:mv", + "name": "ape~1.0.0-beta.7~_repo_rules~mv" } }, - "cosmos-yes": { + "cosmos-printf": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-J+N2zXEIyM9SF5Xqmpye6hISJi40Xj8343AQUL9jOiI=", - "output": "yes", + "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", + "output": "printf", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-yes" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printf" } }, - "yes": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "printf": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-yes//:yes", - "name": "ape~1.0.0-beta.6~_repo_rules~yes" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printf//:printf", + "name": "ape~1.0.0-beta.7~_repo_rules~printf" } }, - "cosmos-zip": { + "cosmos-rm": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-hxobwz7sl7w+NmS45mBoFd0sVSQ3haPeoPW5S7WBUN8=", - "output": "zip", + "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", + "output": "rm", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-zip" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rm" } }, - "zip": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "rm": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zip//:zip", - "name": "ape~1.0.0-beta.6~_repo_rules~zip" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rm//:rm", + "name": "ape~1.0.0-beta.7~_repo_rules~rm" } }, - "cosmos-zsh": { + "cosmos-uname": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-zYH33XZzUvk6v5DiLKe5lKTKx0IsRW7zJWIeQmhM0f4=", - "output": "zsh", + "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", + "output": "uname", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-zsh" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uname" } }, - "zsh": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "uname": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zsh//:zsh", - "name": "ape~1.0.0-beta.6~_repo_rules~zsh" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uname//:uname", + "name": "ape~1.0.0-beta.7~_repo_rules~uname" } }, - "cosmos-zstd": { + "cosmos-pigz": { "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", "ruleClassName": "file", "attributes": { "executable": true, - "integrity": "sha256-UQRCbSiHGWmBr2qsbnsCGQjIyhZG2ilfx9Iyxv6KbzQ=", - "output": "zstd", + "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "output": "pigz", "urls": [ - "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" + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", + "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" ], - "name": "ape~1.0.0-beta.6~_repo_rules~cosmos-zstd" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pigz" } }, - "zstd": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "pigz": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zstd//:zstd", - "name": "ape~1.0.0-beta.6~_repo_rules~zstd" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pigz//:pigz", + "name": "ape~1.0.0-beta.7~_repo_rules~pigz" } } } @@ -11843,6 +15235,474 @@ } } }, + "@@aspect_bazel_lib~2.7.0//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "xkCrElz5fQuBa39cTFFUicDgs1jDcoxP+48jsvXon4M=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "expand_template_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_windows_amd64", + "platform": "windows_amd64" + } + }, + "copy_to_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_amd64", + "platform": "darwin_amd64", + "version": "1.7" + } + }, + "copy_to_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_arm64", + "platform": "linux_arm64", + "version": "1.7" + } + }, + "coreutils_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_arm64", + "platform": "darwin_arm64", + "version": "0.0.23" + } + }, + "copy_to_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "bsd_tar_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_arm64", + "platform": "linux_arm64" + } + }, + "copy_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "coreutils_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_amd64", + "platform": "darwin_amd64", + "version": "0.0.23" + } + }, + "coreutils_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_arm64", + "platform": "linux_arm64", + "version": "0.0.23" + } + }, + "yq_linux_s390x": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_s390x", + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq" + } + }, + "expand_template_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "copy_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_arm64", + "platform": "darwin_arm64", + "version": "1.7" + } + }, + "yq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_amd64", + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "copy_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "expand_template_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_toolchains", + "user_repository_name": "expand_template" + } + }, + "bats_assert": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_assert", + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", + "urls": [ + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" + ], + "strip_prefix": "bats-assert-2.1.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "copy_to_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_amd64", + "platform": "linux_amd64" + } + }, + "yq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_toolchains", + "user_repository_name": "yq" + } + }, + "bats_support": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_support", + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", + "urls": [ + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" + ], + "strip_prefix": "bats-support-0.3.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bsd_tar_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq" + } + }, + "expand_template_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "bsd_tar_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_to_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "coreutils_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_amd64", + "platform": "linux_amd64", + "version": "0.0.23" + } + }, + "copy_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_toolchains", + "user_repository_name": "copy_directory" + } + }, + "yq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_amd64", + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "copy_to_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "coreutils_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_toolchains", + "user_repository_name": "coreutils" + } + }, + "copy_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "bats_file": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_file", + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", + "urls": [ + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" + ], + "strip_prefix": "bats-file-0.4.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "expand_template_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_arm64", + "platform": "linux_arm64" + } + }, + "jq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_amd64", + "platform": "linux_amd64", + "version": "1.7" + } + }, + "bsd_tar_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "tar_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_toolchains", + "user_repository_name": "bsd_tar" + } + }, + "bats_toolchains": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_toolchains", + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", + "urls": [ + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" + ], + "strip_prefix": "bats-core-1.10.0", + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" + } + }, + "yq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_windows_amd64", + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "jq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_windows_amd64", + "platform": "windows_amd64", + "version": "1.7" + } + }, + "expand_template_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "yq_linux_ppc64le": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_ppc64le", + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "copy_to_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_toolchains", + "user_repository_name": "copy_to_directory" + } + }, + "jq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_toolchains", + "user_repository_name": "jq" + } + }, + "copy_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "yq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_arm64", + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "coreutils_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_windows_amd64", + "platform": "windows_amd64", + "version": "0.0.23" + } + }, + "yq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_arm64", + "platform": "linux_arm64", + "version": "4.25.2" + } + } + } + } + }, "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { "general": { "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", diff --git a/e2e/MODULE.bazel b/e2e/MODULE.bazel index caa03ab..c0e798c 100644 --- a/e2e/MODULE.bazel +++ b/e2e/MODULE.bazel @@ -5,6 +5,9 @@ module( ], ) +bazel_dep(name = "rules_gzip", version = "1.0.0-beta.1") +bazel_dep(name = "rules_bzip2", version = "1.0.0-beta.1") +bazel_dep(name = "rules_zstd", version = "1.0.0-beta.1") bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.9") bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.1") bazel_dep(name = "rules_diff", version = "1.0.0-beta.3") diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index c3cfcf5..cf0b705 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 3, - "moduleFileHash": "581d63034975a769f23311b7ad90c94efce0e75dc8218cbda7674ab804472c41", + "moduleFileHash": "1ded0137fc7709721c4560c884b3ef3c908b63c88a8bc196120bd6b13166143f", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -13,7 +13,7 @@ "compatibilityMode": "ERROR" }, "localOverrideHashes": { - "rules_tar": "77bc3ca4e59d5a4ba5c3b516460743e4314082cb914150f5cf2cbe3a83d484bc", + "rules_tar": "ab81c59229521a9beec99e822488dacf951a3e638a636e0e6e2bbefa8726d086", "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787" }, "moduleDepGraph": { @@ -26,6 +26,9 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { + "rules_gzip": "rules_gzip@1.0.0-beta.1", + "rules_bzip2": "rules_bzip2@1.0.0-beta.1", + "rules_zstd": "rules_zstd@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "rules_coreutils": "rules_coreutils@1.0.0-beta.1", "rules_diff": "rules_diff@1.0.0-beta.3", @@ -34,6 +37,295 @@ "local_config_platform": "local_config_platform@_" } }, + "rules_gzip@1.0.0-beta.1": { + "name": "rules_gzip", + "version": "1.0.0-beta.1", + "key": "rules_gzip@1.0.0-beta.1", + "repoName": "rules_gzip", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//gzip/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-pigz": "ape-pigz", + "pigz": "pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "pigz", + "target": "@ape-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-pigz": "resolved-pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//gzip/toolchain/pigz:type", + "name": "resolved-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_gzip~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_gzip/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-d608JvMhu4oVc3oQp3bs1OE45IuPiSz8LTQ0oHXZ6+dy6TkDaK+AGo7r1u4UqnRrix7im4WD4EK4YmTq5Yb+xw==", + "strip_prefix": "rules_gzip-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_bzip2@1.0.0-beta.1": { + "name": "rules_bzip2", + "version": "1.0.0-beta.1", + "key": "rules_bzip2@1.0.0-beta.1", + "repoName": "rules_bzip2", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//bzip2/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_bzip2@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-bzip2": "ape-bzip2", + "bzip2": "bzip2" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "bzip2", + "target": "@ape-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_bzip2@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-bzip2": "resolved-bzip2" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//bzip2/toolchain/bzip2:type", + "name": "resolved-bzip2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_bzip2~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_bzip2/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-LxqJpKipVUyxOxyRq2peyrIv2v8aUiLiDMbhGqKzSjg+tzHMDapOo/mO6RRmh7N/7UvsxXKUlnPqSwzWNi82Gw==", + "strip_prefix": "rules_bzip2-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_zstd@1.0.0-beta.1": { + "name": "rules_zstd", + "version": "1.0.0-beta.1", + "key": "rules_zstd@1.0.0-beta.1", + "repoName": "rules_zstd", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//zstd/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 15, + "column": 23 + }, + "imports": { + "ape-zstd": "ape-zstd", + "zstd": "zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "zstd", + "target": "@ape-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 17, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-zstd": "resolved-zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//zstd/toolchain/zstd:type", + "name": "resolved-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 25, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_bazel_lib": "aspect_bazel_lib@2.7.0", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_zstd~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_zstd/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-dwkIQ5WKxbfCpNDiP7wd9cO+AvXXxf00v1IKbcXE6v/9fquTfggVUgEdPS1WTbC95HKRUaal8/5j0cCF17Z4EQ==", + "strip_prefix": "rules_zstd-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "toolchain_utils@1.0.0-beta.9": { "name": "toolchain_utils", "version": "1.0.0-beta.9", @@ -87,8 +379,8 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", - "platforms": "platforms@0.0.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -2502,7 +2794,7 @@ ], "deps": { "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.6", + "ape": "ape@1.0.0-beta.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -2537,7 +2829,7 @@ "usingModule": "rules_tar@_", "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 12, + "line": 15, "column": 23 }, "imports": { @@ -2555,7 +2847,7 @@ "devDependency": false, "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 14, + "line": 17, "column": 15 } } @@ -2586,7 +2878,7 @@ "devDependency": false, "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 22, + "line": 25, "column": 9 } } @@ -2596,8 +2888,11 @@ } ], "deps": { + "rules_gzip": "rules_gzip@1.0.0-beta.1", + "rules_bzip2": "rules_bzip2@1.0.0-beta.1", + "rules_zstd": "rules_zstd@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.6", + "ape": "ape@1.0.0-beta.7", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } @@ -2729,7 +3024,7 @@ "rules_license": "rules_license@0.0.7", "rules_proto": "rules_proto@4.0.0", "rules_python": "rules_python@0.4.0", - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "com_google_protobuf": "protobuf@3.19.6", "zlib": "zlib@1.3", "build_bazel_apple_support": "apple_support@1.5.0", @@ -2745,112 +3040,26 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_" } }, - "bazel_skylib@1.4.2": { - "name": "bazel_skylib", - "version": "1.4.2", - "key": "bazel_skylib@1.4.2", - "repoName": "bazel_skylib", + "ape@1.0.0-beta.7": { + "name": "ape", + "version": "1.0.0-beta.7", + "key": "ape@1.0.0-beta.7", + "repoName": "ape", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "//toolchains/unittest:cmd_toolchain", - "//toolchains/unittest:bash_toolchain" - ], - "extensionUsages": [], - "deps": { - "platforms": "platforms@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "bazel_skylib~1.4.2", - "urls": [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz" - ], - "integrity": "sha256-Zv/ZMVZlv6r8lrUiePV8fi3Qn17eJ56m05sr5HHn46o=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "platforms@0.0.7": { - "name": "platforms", - "version": "0.0.7", - "key": "platforms@0.0.7", - "repoName": "platforms", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "platforms", - "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" - ], - "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "download_utils@1.0.0-beta.2": { - "name": "download_utils", - "version": "1.0.0-beta.2", - "key": "download_utils@1.0.0-beta.2", - "repoName": "download_utils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "download_utils~1.0.0-beta.2", - "urls": [ - "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" - ], - "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", - "strip_prefix": "download_utils-v1.0.0-beta.2", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "ape@1.0.0-beta.6": { - "name": "ape", - "version": "1.0.0-beta.6", - "key": "ape@1.0.0-beta.6", - "repoName": "ape", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//ape/toolchain/..." + "//ape/toolchain/..." ], "extensionUsages": [ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-beta.6", + "usingModule": "ape@1.0.0-beta.7", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 0, "column": 0 }, @@ -3027,8 +3236,6 @@ "patch": "patch", "cosmos-pathchk": "cosmos-pathchk", "pathchk": "pathchk", - "cosmos-pigz": "cosmos-pigz", - "pigz": "pigz", "cosmos-pinky": "cosmos-pinky", "pinky": "pinky", "cosmos-pledge": "cosmos-pledge", @@ -3172,7 +3379,29 @@ "cosmos-zsh": "cosmos-zsh", "zsh": "zsh", "cosmos-zstd": "cosmos-zstd", - "zstd": "zstd" + "zstd": "zstd", + "cosmos-chmod": "cosmos-chmod", + "chmod": "chmod", + "cosmos-cp": "cosmos-cp", + "cp": "cp", + "cosmos-dd": "cosmos-dd", + "dd": "dd", + "cosmos-echo": "cosmos-echo", + "echo": "echo", + "cosmos-gzip": "cosmos-gzip", + "gzip": "gzip", + "cosmos-mkdir": "cosmos-mkdir", + "mkdir": "mkdir", + "cosmos-mv": "cosmos-mv", + "mv": "mv", + "cosmos-printf": "cosmos-printf", + "printf": "printf", + "cosmos-rm": "cosmos-rm", + "rm": "rm", + "cosmos-uname": "cosmos-uname", + "uname": "uname", + "cosmos-pigz": "cosmos-pigz", + "pigz": "pigz" }, "devImports": [], "tags": [ @@ -3196,7 +3425,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 17, "column": 17 } @@ -3211,7 +3440,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 36, "column": 7 } @@ -3224,13 +3453,13 @@ "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" + "https://raw.githubusercontent.com/jart/cosmopolitan/3.3.1/ape/ape-m1.c" ], "name": "ape-m1.c" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 45, "column": 14 } @@ -3247,7 +3476,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 58, "column": 8 } @@ -3266,7 +3495,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -3285,7 +3514,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -3304,7 +3533,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 66, "column": 18 } @@ -3316,7 +3545,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 85, "column": 3 } @@ -3335,7 +3564,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 87, "column": 7 } @@ -3348,7 +3577,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 100, "column": 9 } @@ -3367,7 +3596,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3380,7 +3609,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3399,7 +3628,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3412,7 +3641,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3431,7 +3660,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3444,7 +3673,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3463,7 +3692,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3476,7 +3705,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3495,7 +3724,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3508,7 +3737,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3527,7 +3756,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3540,7 +3769,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3559,7 +3788,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3572,7 +3801,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3591,7 +3820,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3604,7 +3833,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3623,7 +3852,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3636,7 +3865,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3655,7 +3884,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3668,7 +3897,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3687,7 +3916,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3700,7 +3929,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3719,7 +3948,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3732,7 +3961,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3751,7 +3980,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3764,7 +3993,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3783,7 +4012,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3796,7 +4025,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3815,7 +4044,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3828,7 +4057,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3847,7 +4076,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3860,7 +4089,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3879,7 +4108,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3892,7 +4121,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3911,7 +4140,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3924,7 +4153,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3943,7 +4172,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3956,7 +4185,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -3975,7 +4204,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -3988,7 +4217,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4007,7 +4236,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4020,7 +4249,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4039,7 +4268,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4052,7 +4281,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4071,7 +4300,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4084,7 +4313,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4103,7 +4332,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4116,7 +4345,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4135,7 +4364,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4148,7 +4377,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4167,7 +4396,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4180,7 +4409,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4199,7 +4428,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4212,7 +4441,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4231,7 +4460,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4244,7 +4473,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4263,7 +4492,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4276,7 +4505,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4295,7 +4524,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4308,7 +4537,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4327,7 +4556,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4340,7 +4569,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4359,7 +4588,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4372,7 +4601,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4391,7 +4620,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4404,7 +4633,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4423,7 +4652,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4436,7 +4665,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4455,7 +4684,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4468,7 +4697,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4487,7 +4716,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4500,7 +4729,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4519,7 +4748,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4532,7 +4761,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4551,7 +4780,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4564,7 +4793,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4583,7 +4812,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4596,7 +4825,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4615,7 +4844,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4628,7 +4857,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4647,7 +4876,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4660,7 +4889,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4679,7 +4908,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4692,7 +4921,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4711,7 +4940,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4724,7 +4953,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4743,7 +4972,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4756,7 +4985,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4775,7 +5004,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4788,7 +5017,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4807,7 +5036,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4820,7 +5049,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4839,7 +5068,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4852,7 +5081,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4871,7 +5100,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4884,7 +5113,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4903,7 +5132,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4916,7 +5145,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4935,7 +5164,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4948,7 +5177,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4967,7 +5196,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -4980,7 +5209,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -4999,7 +5228,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5012,7 +5241,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5031,7 +5260,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5044,7 +5273,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5063,7 +5292,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5076,7 +5305,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5095,7 +5324,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5108,7 +5337,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5127,7 +5356,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5140,7 +5369,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5159,7 +5388,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5172,7 +5401,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5191,7 +5420,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5204,7 +5433,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5223,7 +5452,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5236,7 +5465,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5255,7 +5484,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5268,7 +5497,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5287,7 +5516,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5300,7 +5529,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5319,7 +5548,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5332,7 +5561,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5351,7 +5580,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5364,7 +5593,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5383,7 +5612,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5396,7 +5625,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5415,7 +5644,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5428,7 +5657,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5447,7 +5676,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5460,7 +5689,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5479,7 +5708,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5492,7 +5721,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5511,7 +5740,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5524,7 +5753,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5543,7 +5772,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5556,7 +5785,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5575,7 +5804,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5588,7 +5817,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5607,7 +5836,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5620,7 +5849,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5639,7 +5868,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5652,7 +5881,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5671,7 +5900,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5684,7 +5913,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5703,7 +5932,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5716,7 +5945,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5735,7 +5964,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5748,7 +5977,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5767,7 +5996,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5780,7 +6009,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5799,7 +6028,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5812,7 +6041,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5831,7 +6060,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5844,7 +6073,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5863,7 +6092,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5876,7 +6105,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5895,7 +6124,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5908,7 +6137,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5927,7 +6156,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -5940,39 +6169,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 123, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-pvWipO8MGunU157lNj5pkNwMwDYSUFjtx7nWoNxBDw8=", - "output": "pigz", - "urls": [ - "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-beta.6/MODULE.bazel", - "line": 113, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pigz//:pigz", - "name": "pigz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -5991,7 +6188,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6004,7 +6201,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6023,7 +6220,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6036,7 +6233,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6055,7 +6252,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6068,7 +6265,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6087,7 +6284,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6100,7 +6297,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6119,7 +6316,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6132,7 +6329,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6151,7 +6348,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6164,7 +6361,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6183,7 +6380,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6196,7 +6393,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6215,7 +6412,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6228,7 +6425,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6247,7 +6444,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6260,7 +6457,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6279,7 +6476,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6292,7 +6489,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6311,7 +6508,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6324,7 +6521,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6343,7 +6540,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6356,7 +6553,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6375,7 +6572,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6388,7 +6585,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6407,7 +6604,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6420,7 +6617,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6439,7 +6636,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6452,7 +6649,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6471,7 +6668,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6484,7 +6681,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6503,7 +6700,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6516,7 +6713,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6535,7 +6732,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6548,7 +6745,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6567,7 +6764,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6580,7 +6777,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6599,7 +6796,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6612,7 +6809,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6631,7 +6828,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6644,7 +6841,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6663,7 +6860,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6676,7 +6873,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6695,7 +6892,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6708,7 +6905,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6727,7 +6924,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6740,7 +6937,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6759,7 +6956,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6772,7 +6969,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6791,7 +6988,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6804,7 +7001,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6823,7 +7020,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6836,7 +7033,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6855,7 +7052,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6868,7 +7065,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6887,7 +7084,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6900,7 +7097,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6919,7 +7116,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6932,7 +7129,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6951,7 +7148,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6964,7 +7161,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -6983,7 +7180,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -6996,7 +7193,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7015,7 +7212,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7028,7 +7225,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7047,7 +7244,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7060,7 +7257,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7079,7 +7276,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7092,7 +7289,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7111,7 +7308,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7124,7 +7321,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7143,7 +7340,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7156,7 +7353,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7175,7 +7372,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7188,7 +7385,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7207,7 +7404,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7220,7 +7417,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7239,7 +7436,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7252,7 +7449,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7271,7 +7468,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7284,7 +7481,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7303,7 +7500,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7316,7 +7513,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7335,7 +7532,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7348,7 +7545,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7367,7 +7564,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7380,7 +7577,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7399,7 +7596,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7412,7 +7609,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7431,7 +7628,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7444,7 +7641,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7463,7 +7660,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7476,7 +7673,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7495,7 +7692,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7508,7 +7705,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7527,7 +7724,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7540,7 +7737,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7559,7 +7756,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7572,7 +7769,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7591,7 +7788,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7604,7 +7801,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7623,7 +7820,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7636,7 +7833,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7655,7 +7852,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7668,7 +7865,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7687,7 +7884,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7700,7 +7897,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7719,7 +7916,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7732,7 +7929,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7751,7 +7948,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7764,7 +7961,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7783,7 +7980,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7796,7 +7993,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7815,7 +8012,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7828,7 +8025,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7847,7 +8044,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7860,7 +8057,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7879,7 +8076,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7892,7 +8089,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7911,7 +8108,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7924,7 +8121,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7943,7 +8140,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7956,7 +8153,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -7975,7 +8172,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -7988,7 +8185,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8007,7 +8204,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8020,7 +8217,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8039,7 +8236,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8052,7 +8249,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8071,7 +8268,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8084,7 +8281,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8103,7 +8300,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8116,7 +8313,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8135,7 +8332,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8148,7 +8345,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8167,7 +8364,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8180,7 +8377,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8199,7 +8396,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8212,7 +8409,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8231,7 +8428,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8244,7 +8441,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } @@ -8263,7 +8460,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 113, "column": 22 } @@ -8276,322 +8473,388 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 123, "column": 23 } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-beta.6", - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 109, - "column": 23 - }, - "imports": {}, - "devImports": [], - "tags": [ + }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-awk", - "target": "@awk" + "executable": true, + "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", + "output": "chmod", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" + ], + "name": "cosmos-chmod" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-b2sum", - "target": "@b2sum" + "binary": "@cosmos-chmod//:chmod", + "name": "chmod" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-base32", - "target": "@base32" + "executable": true, + "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", + "output": "cp", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" + ], + "name": "cosmos-cp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-base64", - "target": "@base64" + "binary": "@cosmos-cp//:cp", + "name": "cp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-basename", - "target": "@basename" + "executable": true, + "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", + "output": "dd", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" + ], + "name": "cosmos-dd" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-basenc", - "target": "@basenc" + "binary": "@cosmos-dd//:dd", + "name": "dd" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-bash", - "target": "@bash" + "executable": true, + "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", + "output": "echo", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" + ], + "name": "cosmos-echo" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-berry", - "target": "@berry" + "binary": "@cosmos-echo//:echo", + "name": "echo" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-brotli", - "target": "@brotli" + "executable": true, + "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", + "output": "gzip", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" + ], + "name": "cosmos-gzip" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-bzip2", - "target": "@bzip2" + "binary": "@cosmos-gzip//:gzip", + "name": "gzip" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-cat", - "target": "@cat" + "executable": true, + "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", + "output": "mkdir", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" + ], + "name": "cosmos-mkdir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-chcon", - "target": "@chcon" + "binary": "@cosmos-mkdir//:mkdir", + "name": "mkdir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-chgrp", - "target": "@chgrp" + "executable": true, + "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", + "output": "mv", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" + ], + "name": "cosmos-mv" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-chown", - "target": "@chown" + "binary": "@cosmos-mv//:mv", + "name": "mv" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-chroot", - "target": "@chroot" + "executable": true, + "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", + "output": "printf", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" + ], + "name": "cosmos-printf" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-cksum", - "target": "@cksum" + "binary": "@cosmos-printf//:printf", + "name": "printf" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-clang-format", - "target": "@clang-format" + "executable": true, + "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", + "output": "rm", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" + ], + "name": "cosmos-rm" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-cmp", - "target": "@cmp" + "binary": "@cosmos-rm//:rm", + "name": "rm" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-comm", - "target": "@comm" + "executable": true, + "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", + "output": "uname", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" + ], + "name": "cosmos-uname" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 293, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-cpuid", - "target": "@cpuid" + "binary": "@cosmos-uname//:uname", + "name": "uname" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 303, "column": 23 } }, { - "tagName": "symlink", + "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { - "name": "ape-csplit", - "target": "@csplit" + "executable": true, + "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "output": "pigz", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", + "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" + ], + "name": "cosmos-pigz" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, - "column": 23 + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 330, + "column": 22 } }, { - "tagName": "symlink", + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", "attributeValues": { - "name": "ape-ctags", - "target": "@ctags" + "binary": "@cosmos-pigz//:pigz", + "name": "pigz" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 340, "column": 23 } - }, + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "ape@1.0.0-beta.7", + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 109, + "column": 23 + }, + "imports": {}, + "devImports": [], + "tags": [ { "tagName": "symlink", "attributeValues": { - "name": "ape-curl", - "target": "@curl" + "name": "ape-awk", + "target": "@awk" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8599,12 +8862,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-cut", - "target": "@cut" + "name": "ape-b2sum", + "target": "@b2sum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8612,12 +8875,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-dash", - "target": "@dash" + "name": "ape-base32", + "target": "@base32" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8625,12 +8888,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-datasette", - "target": "@datasette" + "name": "ape-base64", + "target": "@base64" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8638,12 +8901,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-date", - "target": "@date" + "name": "ape-basename", + "target": "@basename" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8651,12 +8914,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-df", - "target": "@df" + "name": "ape-basenc", + "target": "@basenc" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8664,12 +8927,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-dir", - "target": "@dir" + "name": "ape-bash", + "target": "@bash" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8677,12 +8940,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-dircolors", - "target": "@dircolors" + "name": "ape-berry", + "target": "@berry" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8690,12 +8953,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-dirname", - "target": "@dirname" + "name": "ape-brotli", + "target": "@brotli" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8703,12 +8966,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-diff", - "target": "@diff" + "name": "ape-bzip2", + "target": "@bzip2" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8716,12 +8979,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-diff3", - "target": "@diff3" + "name": "ape-cat", + "target": "@cat" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8729,12 +8992,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-du", - "target": "@du" + "name": "ape-chcon", + "target": "@chcon" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8742,12 +9005,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-emacs", - "target": "@emacs" + "name": "ape-chgrp", + "target": "@chgrp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8755,12 +9018,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-emacsclient", - "target": "@emacsclient" + "name": "ape-chown", + "target": "@chown" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8768,12 +9031,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-env", - "target": "@env" + "name": "ape-chroot", + "target": "@chroot" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8781,12 +9044,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-expand", - "target": "@expand" + "name": "ape-cksum", + "target": "@cksum" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8794,12 +9057,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-expr", - "target": "@expr" + "name": "ape-clang-format", + "target": "@clang-format" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8807,12 +9070,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-factor", - "target": "@factor" + "name": "ape-cmp", + "target": "@cmp" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8820,12 +9083,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-false", - "target": "@false" + "name": "ape-comm", + "target": "@comm" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8833,12 +9096,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-find", - "target": "@find" + "name": "ape-cpuid", + "target": "@cpuid" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8846,12 +9109,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-fmt", - "target": "@fmt" + "name": "ape-csplit", + "target": "@csplit" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8859,12 +9122,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-fold", - "target": "@fold" + "name": "ape-ctags", + "target": "@ctags" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8872,12 +9135,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-gmake", - "target": "@gmake" + "name": "ape-curl", + "target": "@curl" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8885,12 +9148,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-greenbean", - "target": "@greenbean" + "name": "ape-cut", + "target": "@cut" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8898,12 +9161,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-grep", - "target": "@grep" + "name": "ape-dash", + "target": "@dash" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8911,12 +9174,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-groups", - "target": "@groups" + "name": "ape-datasette", + "target": "@datasette" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8924,12 +9187,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-head", - "target": "@head" + "name": "ape-date", + "target": "@date" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8937,12 +9200,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-id", - "target": "@id" + "name": "ape-df", + "target": "@df" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8950,12 +9213,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-install", - "target": "@install" + "name": "ape-dir", + "target": "@dir" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8963,12 +9226,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-join", - "target": "@join" + "name": "ape-dircolors", + "target": "@dircolors" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8976,12 +9239,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-kill", - "target": "@kill" + "name": "ape-dirname", + "target": "@dirname" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -8989,12 +9252,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-less", - "target": "@less" + "name": "ape-diff", + "target": "@diff" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9002,12 +9265,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-life", - "target": "@life" + "name": "ape-diff3", + "target": "@diff3" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9015,12 +9278,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-link", - "target": "@link" + "name": "ape-du", + "target": "@du" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9028,12 +9291,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-links", - "target": "@links" + "name": "ape-emacs", + "target": "@emacs" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9041,12 +9304,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-ln", - "target": "@ln" + "name": "ape-emacsclient", + "target": "@emacsclient" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9054,12 +9317,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-locate", - "target": "@locate" + "name": "ape-env", + "target": "@env" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9067,12 +9330,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-logname", - "target": "@logname" + "name": "ape-expand", + "target": "@expand" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9080,12 +9343,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-ls", - "target": "@ls" + "name": "ape-expr", + "target": "@expr" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9093,12 +9356,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-lua", - "target": "@lua" + "name": "ape-factor", + "target": "@factor" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9106,12 +9369,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-lz4", - "target": "@lz4" + "name": "ape-false", + "target": "@false" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9119,12 +9382,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-make", - "target": "@make" + "name": "ape-find", + "target": "@find" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9132,12 +9395,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-md5sum", - "target": "@md5sum" + "name": "ape-fmt", + "target": "@fmt" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9145,12 +9408,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-mkfifo", - "target": "@mkfifo" + "name": "ape-fold", + "target": "@fold" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9158,12 +9421,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-mknod", - "target": "@mknod" + "name": "ape-gmake", + "target": "@gmake" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9171,12 +9434,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-mktemp", - "target": "@mktemp" + "name": "ape-greenbean", + "target": "@greenbean" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9184,12 +9447,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-mktemper", - "target": "@mktemper" + "name": "ape-grep", + "target": "@grep" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9197,12 +9460,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nano", - "target": "@nano" + "name": "ape-groups", + "target": "@groups" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9210,12 +9473,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nesemu1", - "target": "@nesemu1" + "name": "ape-head", + "target": "@head" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9223,12 +9486,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nice", - "target": "@nice" + "name": "ape-id", + "target": "@id" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9236,12 +9499,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-ninja", - "target": "@ninja" + "name": "ape-install", + "target": "@install" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9249,12 +9512,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nl", - "target": "@nl" + "name": "ape-join", + "target": "@join" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9262,12 +9525,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nohup", - "target": "@nohup" + "name": "ape-kill", + "target": "@kill" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9275,12 +9538,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-nproc", - "target": "@nproc" + "name": "ape-less", + "target": "@less" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9288,12 +9551,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-numfmt", - "target": "@numfmt" + "name": "ape-life", + "target": "@life" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9301,12 +9564,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-od", - "target": "@od" + "name": "ape-link", + "target": "@link" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9314,12 +9577,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-paste", - "target": "@paste" + "name": "ape-links", + "target": "@links" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9327,12 +9590,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-patch", - "target": "@patch" + "name": "ape-ln", + "target": "@ln" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9340,12 +9603,12 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-pathchk", - "target": "@pathchk" + "name": "ape-locate", + "target": "@locate" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9353,12 +9616,285 @@ { "tagName": "symlink", "attributeValues": { - "name": "ape-pigz", - "target": "@pigz" - }, + "name": "ape-logname", + "target": "@logname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-ls", + "target": "@ls" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-lua", + "target": "@lua" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-lz4", + "target": "@lz4" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-make", + "target": "@make" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-md5sum", + "target": "@md5sum" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mkfifo", + "target": "@mkfifo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mknod", + "target": "@mknod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mktemp", + "target": "@mktemp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mktemper", + "target": "@mktemper" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nano", + "target": "@nano" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nesemu1", + "target": "@nesemu1" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nice", + "target": "@nice" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-ninja", + "target": "@ninja" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nl", + "target": "@nl" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nohup", + "target": "@nohup" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-nproc", + "target": "@nproc" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-numfmt", + "target": "@numfmt" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-od", + "target": "@od" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-paste", + "target": "@paste" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/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.7/MODULE.bazel", + "line": 127, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-pathchk", + "target": "@pathchk" + }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9371,7 +9907,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9384,7 +9920,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9397,7 +9933,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9410,7 +9946,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9423,7 +9959,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9436,7 +9972,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9449,7 +9985,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9462,7 +9998,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9475,7 +10011,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9488,7 +10024,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9501,7 +10037,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9514,7 +10050,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9527,7 +10063,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9540,7 +10076,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9553,7 +10089,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9566,7 +10102,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9579,7 +10115,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9592,7 +10128,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9605,7 +10141,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9618,7 +10154,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9631,7 +10167,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9644,7 +10180,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9657,7 +10193,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9670,7 +10206,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9683,7 +10219,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9696,7 +10232,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9709,7 +10245,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9722,7 +10258,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9735,7 +10271,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9748,7 +10284,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9761,7 +10297,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9774,7 +10310,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9787,7 +10323,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9800,7 +10336,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9813,7 +10349,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9826,7 +10362,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9839,7 +10375,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9852,7 +10388,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9865,7 +10401,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9878,7 +10414,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9891,7 +10427,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9904,7 +10440,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9917,7 +10453,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9930,7 +10466,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9943,7 +10479,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9956,7 +10492,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9969,7 +10505,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9982,7 +10518,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -9995,7 +10531,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10008,7 +10544,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10021,7 +10557,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10034,7 +10570,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10047,7 +10583,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10060,7 +10596,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10073,7 +10609,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10086,7 +10622,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10099,7 +10635,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10112,7 +10648,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10125,7 +10661,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10138,7 +10674,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10151,7 +10687,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10164,7 +10700,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10177,7 +10713,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10190,7 +10726,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10203,7 +10739,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10216,7 +10752,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10229,7 +10765,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10242,7 +10778,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10255,7 +10791,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10268,7 +10804,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10281,7 +10817,7 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } @@ -10294,11 +10830,154 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", "line": 127, "column": 23 } - } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-chmod", + "target": "@chmod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-cp", + "target": "@cp" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-dd", + "target": "@dd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-echo", + "target": "@echo" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-gzip", + "target": "@gzip" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mkdir", + "target": "@mkdir" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-mv", + "target": "@mv" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-printf", + "target": "@printf" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-rm", + "target": "@rm" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-uname", + "target": "@uname" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 307, + "column": 23 + } + }, + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-pigz", + "target": "@pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "line": 344, + "column": 23 + } + } ], "hasDevUseExtension": false, "hasNonDevUseExtension": true @@ -10314,12 +10993,246 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "ape~1.0.0-beta.6", + "name": "ape~1.0.0-beta.7", + "urls": [ + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.7/downloads/src.tar.gz" + ], + "integrity": "sha512-5xqM1Z2LFCw3iS7ME8nDunrkEEdITYjapBpasgIJ9+svfxcXOB6LQ/JSso0Aw6L7GFWyk4QqvYvSTb6FHz4+XA==", + "strip_prefix": "ape-v1.0.0-beta.7", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "bazel_skylib@1.5.0": { + "name": "bazel_skylib", + "version": "1.5.0", + "key": "bazel_skylib@1.5.0", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.8", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "bazel_skylib~1.5.0", + "urls": [ + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + ], + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "aspect_bazel_lib@2.7.0": { + "name": "aspect_bazel_lib", + "version": "2.7.0", + "key": "aspect_bazel_lib@2.7.0", + "repoName": "aspect_bazel_lib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@copy_directory_toolchains//:all", + "@copy_to_directory_toolchains//:all", + "@jq_toolchains//:all", + "@yq_toolchains//:all", + "@coreutils_toolchains//:all", + "@expand_template_toolchains//:all", + "@bats_toolchains//:all", + "@bsd_tar_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_bazel_lib@2.7.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 17, + "column": 37 + }, + "imports": { + "bats_toolchains": "bats_toolchains", + "bsd_tar_toolchains": "bsd_tar_toolchains", + "copy_directory_toolchains": "copy_directory_toolchains", + "copy_to_directory_toolchains": "copy_to_directory_toolchains", + "coreutils_toolchains": "coreutils_toolchains", + "expand_template_toolchains": "expand_template_toolchains", + "jq_toolchains": "jq_toolchains", + "yq_toolchains": "yq_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "copy_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 18, + "column": 36 + } + }, + { + "tagName": "copy_to_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 19, + "column": 39 + } + }, + { + "tagName": "jq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 20, + "column": 24 + } + }, + { + "tagName": "yq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 21, + "column": 24 + } + }, + { + "tagName": "coreutils", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 22, + "column": 31 + } + }, + { + "tagName": "tar", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 23, + "column": 25 + } + }, + { + "tagName": "expand_template", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 24, + "column": 37 + } + }, + { + "tagName": "bats", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 25, + "column": 26 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "io_bazel_stardoc": "stardoc@0.5.4", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0", + "urls": [ + "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.0/bazel-lib-v2.7.0.tar.gz" + ], + "integrity": "sha256-NX2tnSEjJ8NdkkQZDvAQqtMV5z/6G+0aKeIMNy+co0Y=", + "strip_prefix": "bazel-lib-2.7.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/go_dev_dep.patch": "sha256-KgABwDzOT+DugUHn9tHLOz05osnk2FLsS10d5zqG/M0=", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/module_dot_bazel_version.patch": "sha256-WYIBojN6hwiR6VcIhPR+k7VWAR6+4HaKVMA8WKDYwpw=" + }, + "remote_patch_strip": 1 + } + } + }, + "platforms@0.0.8": { + "name": "platforms", + "version": "0.0.8", + "key": "platforms@0.0.8", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "platforms", + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz" + ], + "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "download_utils@1.0.0-beta.2": { + "name": "download_utils", + "version": "1.0.0-beta.2", + "key": "download_utils@1.0.0-beta.2", + "repoName": "download_utils", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "download_utils~1.0.0-beta.2", "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.6/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" ], - "integrity": "sha512-fZNOpj31MphsHbrPcS71rxq2vcGkLtiBB8hpTQkqrd4sHDhhjfi8ovi8YSQtC70lbyBKxZQ/htwrradnbB58kg==", - "strip_prefix": "ape-v1.0.0-beta.6", + "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", + "strip_prefix": "download_utils-v1.0.0-beta.2", "remote_patches": {}, "remote_patch_strip": 0 } @@ -10354,7 +11267,7 @@ } ], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -10453,9 +11366,9 @@ } ], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "rules_cc": "rules_cc@0.0.9", - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_proto": "rules_proto@4.0.0", "rules_license": "rules_license@0.0.7", "bazel_tools": "bazel_tools@_", @@ -10512,7 +11425,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -10598,7 +11511,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", + "bazel_skylib": "bazel_skylib@1.5.0", "zlib": "zlib@1.3", "rules_python": "rules_python@0.4.0", "rules_cc": "rules_cc@0.0.9", @@ -10636,7 +11549,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.7", + "platforms": "platforms@0.0.8", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -10689,8 +11602,8 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.4.2", - "platforms": "platforms@0.0.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -10708,12 +11621,42 @@ "remote_patch_strip": 0 } } - } + }, + "stardoc@0.5.4": { + "name": "stardoc", + "version": "0.5.4", + "key": "stardoc@0.5.4", + "repoName": "stardoc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_java": "rules_java@7.1.0", + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "stardoc~0.5.4", + "urls": [ + "https://github.com/bazelbuild/stardoc/releases/download/0.5.4/stardoc-0.5.4.tar.gz" + ], + "integrity": "sha256-7FcTnkZvquVj8vw5YJ2klIpHm7UbbWeu3X2bG4BZxDM=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + } }, "moduleExtensions": { - "@@ape~1.0.0-beta.6//:MODULE.bazel%_repo_rules": { + "@@ape~1.0.0-beta.7//:MODULE.bazel%_repo_rules": { "general": { - "bzlTransitiveDigest": "Eb1Xl7COaA7o2xZRXuWoU8oqNKYaG3jNe5NZjqS8dmk=", + "bzlTransitiveDigest": "pPlw3Dcew6odD88G4yzy3pJxQQVT1YHwGbImNH4voCY=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { @@ -10734,7 +11677,7 @@ "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": "ape~1.0.0-beta.6~_repo_rules~zig-0.11.0-arm64-darwin" + "name": "ape~1.0.0-beta.7~_repo_rules~zig-0.11.0-arm64-darwin" } }, "zig": { @@ -10744,7 +11687,7 @@ "map": { "arm64-darwin": "@zig-0.11.0-arm64-darwin" }, - "name": "ape~1.0.0-beta.6~_repo_rules~zig" + "name": "ape~1.0.0-beta.7~_repo_rules~zig" } }, "ape-m1.c": { @@ -10756,21 +11699,21 @@ "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" + "https://raw.githubusercontent.com/jart/cosmopolitan/3.3.1/ape/ape-m1.c" ], - "name": "ape~1.0.0-beta.6~_repo_rules~ape-m1.c" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-m1.c" } }, "ape-arm64.macho": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/compile:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/compile:repository.bzl", "ruleClassName": "compile", "attributes": { "srcs": [ - "@@ape~1.0.0-beta.6~_repo_rules~ape-m1.c//:ape-m1.c" + "@@ape~1.0.0-beta.7~_repo_rules~ape-m1.c//:ape-m1.c" ], "output": "ape", - "zig": "@@ape~1.0.0-beta.6~_repo_rules~zig//:entrypoint", - "name": "ape~1.0.0-beta.6~_repo_rules~ape-arm64.macho" + "zig": "@@ape~1.0.0-beta.7~_repo_rules~zig//:entrypoint", + "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.macho" } }, "ape-arm64.elf": { @@ -10784,7 +11727,7 @@ "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~1.0.0-beta.6~_repo_rules~ape-arm64.elf" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.elf" } }, "ape-x86_64.elf": { @@ -10798,7 +11741,7 @@ "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~1.0.0-beta.6~_repo_rules~ape-x86_64.elf" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-x86_64.elf" } }, "ape-x86_64.macho": { @@ -10812,14 +11755,14 @@ "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~1.0.0-beta.6~_repo_rules~ape-x86_64.macho" + "name": "ape~1.0.0-beta.7~_repo_rules~ape-x86_64.macho" } }, "ape.pe": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/pe:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/pe:repository.bzl", "ruleClassName": "pe", "attributes": { - "name": "ape~1.0.0-beta.6~_repo_rules~ape.pe" + "name": "ape~1.0.0-beta.7~_repo_rules~ape.pe" } }, "launcher": { @@ -10833,15 +11776,15 @@ "arm64-darwin": "@ape-arm64.macho", "windows": "@ape.pe" }, - "name": "ape~1.0.0-beta.6~_repo_rules~launcher" + "name": "ape~1.0.0-beta.7~_repo_rules~launcher" } }, "resolved-ape": { "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", "ruleClassName": "resolved", "attributes": { - "toolchain_type": "@@ape~1.0.0-beta.6//ape/toolchain/ape:type", - "name": "ape~1.0.0-beta.6~_repo_rules~resolved-ape" + "toolchain_type": "@@ape~1.0.0-beta.7//ape/toolchain/ape:type", + "name": "ape~1.0.0-beta.7~_repo_rules~resolved-ape" } }, "cosmos-awk": { @@ -10855,15 +11798,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-awk" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-awk" } }, "awk": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-awk//:awk", - "name": "ape~1.0.0-beta.6~_repo_rules~awk" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-awk//:awk", + "name": "ape~1.0.0-beta.7~_repo_rules~awk" } }, "cosmos-b2sum": { @@ -10877,15 +11820,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-b2sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum" } }, "b2sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-b2sum//:b2sum", - "name": "ape~1.0.0-beta.6~_repo_rules~b2sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum//:b2sum", + "name": "ape~1.0.0-beta.7~_repo_rules~b2sum" } }, "cosmos-base32": { @@ -10899,15 +11842,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-base32" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-base32" } }, "base32": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-base32//:base32", - "name": "ape~1.0.0-beta.6~_repo_rules~base32" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base32//:base32", + "name": "ape~1.0.0-beta.7~_repo_rules~base32" } }, "cosmos-base64": { @@ -10921,15 +11864,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-base64" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-base64" } }, "base64": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-base64//:base64", - "name": "ape~1.0.0-beta.6~_repo_rules~base64" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base64//:base64", + "name": "ape~1.0.0-beta.7~_repo_rules~base64" } }, "cosmos-basename": { @@ -10943,15 +11886,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-basename" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-basename" } }, "basename": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-basename//:basename", - "name": "ape~1.0.0-beta.6~_repo_rules~basename" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basename//:basename", + "name": "ape~1.0.0-beta.7~_repo_rules~basename" } }, "cosmos-basenc": { @@ -10965,15 +11908,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-basenc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-basenc" } }, "basenc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-basenc//:basenc", - "name": "ape~1.0.0-beta.6~_repo_rules~basenc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basenc//:basenc", + "name": "ape~1.0.0-beta.7~_repo_rules~basenc" } }, "cosmos-bash": { @@ -10987,15 +11930,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-bash" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-bash" } }, "bash": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-bash//:bash", - "name": "ape~1.0.0-beta.6~_repo_rules~bash" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bash//:bash", + "name": "ape~1.0.0-beta.7~_repo_rules~bash" } }, "cosmos-berry": { @@ -11009,15 +11952,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-berry" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-berry" } }, "berry": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-berry//:berry", - "name": "ape~1.0.0-beta.6~_repo_rules~berry" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-berry//:berry", + "name": "ape~1.0.0-beta.7~_repo_rules~berry" } }, "cosmos-brotli": { @@ -11031,15 +11974,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-brotli" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-brotli" } }, "brotli": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-brotli//:brotli", - "name": "ape~1.0.0-beta.6~_repo_rules~brotli" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-brotli//:brotli", + "name": "ape~1.0.0-beta.7~_repo_rules~brotli" } }, "cosmos-bzip2": { @@ -11053,15 +11996,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-bzip2" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2" } }, "bzip2": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-bzip2//:bzip2", - "name": "ape~1.0.0-beta.6~_repo_rules~bzip2" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2//:bzip2", + "name": "ape~1.0.0-beta.7~_repo_rules~bzip2" } }, "cosmos-cat": { @@ -11075,15 +12018,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cat" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cat" } }, "cat": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cat//:cat", - "name": "ape~1.0.0-beta.6~_repo_rules~cat" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cat//:cat", + "name": "ape~1.0.0-beta.7~_repo_rules~cat" } }, "cosmos-chcon": { @@ -11097,15 +12040,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chcon" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chcon" } }, "chcon": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chcon//:chcon", - "name": "ape~1.0.0-beta.6~_repo_rules~chcon" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chcon//:chcon", + "name": "ape~1.0.0-beta.7~_repo_rules~chcon" } }, "cosmos-chgrp": { @@ -11119,15 +12062,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chgrp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp" } }, "chgrp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chgrp//:chgrp", - "name": "ape~1.0.0-beta.6~_repo_rules~chgrp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp//:chgrp", + "name": "ape~1.0.0-beta.7~_repo_rules~chgrp" } }, "cosmos-chown": { @@ -11141,15 +12084,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chown" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chown" } }, "chown": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chown//:chown", - "name": "ape~1.0.0-beta.6~_repo_rules~chown" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chown//:chown", + "name": "ape~1.0.0-beta.7~_repo_rules~chown" } }, "cosmos-chroot": { @@ -11163,15 +12106,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-chroot" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chroot" } }, "chroot": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-chroot//:chroot", - "name": "ape~1.0.0-beta.6~_repo_rules~chroot" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chroot//:chroot", + "name": "ape~1.0.0-beta.7~_repo_rules~chroot" } }, "cosmos-cksum": { @@ -11185,15 +12128,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cksum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cksum" } }, "cksum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cksum//:cksum", - "name": "ape~1.0.0-beta.6~_repo_rules~cksum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cksum//:cksum", + "name": "ape~1.0.0-beta.7~_repo_rules~cksum" } }, "cosmos-clang-format": { @@ -11207,15 +12150,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-clang-format" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format" } }, "clang-format": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-clang-format//:clang-format", - "name": "ape~1.0.0-beta.6~_repo_rules~clang-format" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format//:clang-format", + "name": "ape~1.0.0-beta.7~_repo_rules~clang-format" } }, "cosmos-cmp": { @@ -11229,15 +12172,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cmp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cmp" } }, "cmp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cmp//:cmp", - "name": "ape~1.0.0-beta.6~_repo_rules~cmp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cmp//:cmp", + "name": "ape~1.0.0-beta.7~_repo_rules~cmp" } }, "cosmos-comm": { @@ -11251,15 +12194,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-comm" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-comm" } }, "comm": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-comm//:comm", - "name": "ape~1.0.0-beta.6~_repo_rules~comm" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-comm//:comm", + "name": "ape~1.0.0-beta.7~_repo_rules~comm" } }, "cosmos-cpuid": { @@ -11273,15 +12216,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cpuid" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid" } }, "cpuid": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cpuid//:cpuid", - "name": "ape~1.0.0-beta.6~_repo_rules~cpuid" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid//:cpuid", + "name": "ape~1.0.0-beta.7~_repo_rules~cpuid" } }, "cosmos-csplit": { @@ -11295,15 +12238,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-csplit" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-csplit" } }, "csplit": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-csplit//:csplit", - "name": "ape~1.0.0-beta.6~_repo_rules~csplit" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-csplit//:csplit", + "name": "ape~1.0.0-beta.7~_repo_rules~csplit" } }, "cosmos-ctags": { @@ -11317,15 +12260,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ctags" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ctags" } }, "ctags": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ctags//:ctags", - "name": "ape~1.0.0-beta.6~_repo_rules~ctags" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ctags//:ctags", + "name": "ape~1.0.0-beta.7~_repo_rules~ctags" } }, "cosmos-curl": { @@ -11339,15 +12282,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-curl" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-curl" } }, "curl": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-curl//:curl", - "name": "ape~1.0.0-beta.6~_repo_rules~curl" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-curl//:curl", + "name": "ape~1.0.0-beta.7~_repo_rules~curl" } }, "cosmos-cut": { @@ -11361,15 +12304,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-cut" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cut" } }, "cut": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-cut//:cut", - "name": "ape~1.0.0-beta.6~_repo_rules~cut" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cut//:cut", + "name": "ape~1.0.0-beta.7~_repo_rules~cut" } }, "cosmos-dash": { @@ -11383,15 +12326,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dash" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dash" } }, "dash": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dash//:dash", - "name": "ape~1.0.0-beta.6~_repo_rules~dash" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dash//:dash", + "name": "ape~1.0.0-beta.7~_repo_rules~dash" } }, "cosmos-datasette": { @@ -11405,15 +12348,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-datasette" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-datasette" } }, "datasette": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-datasette//:datasette", - "name": "ape~1.0.0-beta.6~_repo_rules~datasette" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-datasette//:datasette", + "name": "ape~1.0.0-beta.7~_repo_rules~datasette" } }, "cosmos-date": { @@ -11427,15 +12370,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-date" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-date" } }, "date": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-date//:date", - "name": "ape~1.0.0-beta.6~_repo_rules~date" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-date//:date", + "name": "ape~1.0.0-beta.7~_repo_rules~date" } }, "cosmos-df": { @@ -11449,15 +12392,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-df" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-df" } }, "df": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-df//:df", - "name": "ape~1.0.0-beta.6~_repo_rules~df" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-df//:df", + "name": "ape~1.0.0-beta.7~_repo_rules~df" } }, "cosmos-dir": { @@ -11471,15 +12414,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dir" } }, "dir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dir//:dir", - "name": "ape~1.0.0-beta.6~_repo_rules~dir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dir//:dir", + "name": "ape~1.0.0-beta.7~_repo_rules~dir" } }, "cosmos-dircolors": { @@ -11493,15 +12436,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dircolors" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors" } }, "dircolors": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dircolors//:dircolors", - "name": "ape~1.0.0-beta.6~_repo_rules~dircolors" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors//:dircolors", + "name": "ape~1.0.0-beta.7~_repo_rules~dircolors" } }, "cosmos-dirname": { @@ -11515,15 +12458,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-dirname" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dirname" } }, "dirname": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-dirname//:dirname", - "name": "ape~1.0.0-beta.6~_repo_rules~dirname" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dirname//:dirname", + "name": "ape~1.0.0-beta.7~_repo_rules~dirname" } }, "cosmos-diff": { @@ -11537,15 +12480,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-diff" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff" } }, "diff": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-diff//:diff", - "name": "ape~1.0.0-beta.6~_repo_rules~diff" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff//:diff", + "name": "ape~1.0.0-beta.7~_repo_rules~diff" } }, "cosmos-diff3": { @@ -11559,15 +12502,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-diff3" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff3" } }, "diff3": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-diff3//:diff3", - "name": "ape~1.0.0-beta.6~_repo_rules~diff3" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff3//:diff3", + "name": "ape~1.0.0-beta.7~_repo_rules~diff3" } }, "cosmos-du": { @@ -11581,15 +12524,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-du" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-du" } }, "du": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-du//:du", - "name": "ape~1.0.0-beta.6~_repo_rules~du" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-du//:du", + "name": "ape~1.0.0-beta.7~_repo_rules~du" } }, "cosmos-emacs": { @@ -11603,15 +12546,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-emacs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacs" } }, "emacs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-emacs//:emacs", - "name": "ape~1.0.0-beta.6~_repo_rules~emacs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacs//:emacs", + "name": "ape~1.0.0-beta.7~_repo_rules~emacs" } }, "cosmos-emacsclient": { @@ -11625,15 +12568,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-emacsclient" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient" } }, "emacsclient": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-emacsclient//:emacsclient", - "name": "ape~1.0.0-beta.6~_repo_rules~emacsclient" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient//:emacsclient", + "name": "ape~1.0.0-beta.7~_repo_rules~emacsclient" } }, "cosmos-env": { @@ -11647,15 +12590,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-env" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-env" } }, "env": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-env//:env", - "name": "ape~1.0.0-beta.6~_repo_rules~env" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-env//:env", + "name": "ape~1.0.0-beta.7~_repo_rules~env" } }, "cosmos-expand": { @@ -11669,15 +12612,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-expand" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-expand" } }, "expand": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-expand//:expand", - "name": "ape~1.0.0-beta.6~_repo_rules~expand" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expand//:expand", + "name": "ape~1.0.0-beta.7~_repo_rules~expand" } }, "cosmos-expr": { @@ -11691,15 +12634,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-expr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-expr" } }, "expr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-expr//:expr", - "name": "ape~1.0.0-beta.6~_repo_rules~expr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expr//:expr", + "name": "ape~1.0.0-beta.7~_repo_rules~expr" } }, "cosmos-factor": { @@ -11713,15 +12656,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-factor" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-factor" } }, "factor": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-factor//:factor", - "name": "ape~1.0.0-beta.6~_repo_rules~factor" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-factor//:factor", + "name": "ape~1.0.0-beta.7~_repo_rules~factor" } }, "cosmos-false": { @@ -11735,15 +12678,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-false" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-false" } }, "false": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-false//:false", - "name": "ape~1.0.0-beta.6~_repo_rules~false" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-false//:false", + "name": "ape~1.0.0-beta.7~_repo_rules~false" } }, "cosmos-find": { @@ -11757,15 +12700,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-find" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-find" } }, "find": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-find//:find", - "name": "ape~1.0.0-beta.6~_repo_rules~find" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-find//:find", + "name": "ape~1.0.0-beta.7~_repo_rules~find" } }, "cosmos-fmt": { @@ -11779,15 +12722,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-fmt" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-fmt" } }, "fmt": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-fmt//:fmt", - "name": "ape~1.0.0-beta.6~_repo_rules~fmt" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fmt//:fmt", + "name": "ape~1.0.0-beta.7~_repo_rules~fmt" } }, "cosmos-fold": { @@ -11801,15 +12744,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-fold" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-fold" } }, "fold": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-fold//:fold", - "name": "ape~1.0.0-beta.6~_repo_rules~fold" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fold//:fold", + "name": "ape~1.0.0-beta.7~_repo_rules~fold" } }, "cosmos-gmake": { @@ -11823,15 +12766,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-gmake" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gmake" } }, "gmake": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-gmake//:gmake", - "name": "ape~1.0.0-beta.6~_repo_rules~gmake" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gmake//:gmake", + "name": "ape~1.0.0-beta.7~_repo_rules~gmake" } }, "cosmos-greenbean": { @@ -11845,15 +12788,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-greenbean" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean" } }, "greenbean": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-greenbean//:greenbean", - "name": "ape~1.0.0-beta.6~_repo_rules~greenbean" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean//:greenbean", + "name": "ape~1.0.0-beta.7~_repo_rules~greenbean" } }, "cosmos-grep": { @@ -11867,15 +12810,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-grep" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-grep" } }, "grep": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-grep//:grep", - "name": "ape~1.0.0-beta.6~_repo_rules~grep" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-grep//:grep", + "name": "ape~1.0.0-beta.7~_repo_rules~grep" } }, "cosmos-groups": { @@ -11889,15 +12832,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-groups" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-groups" } }, "groups": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-groups//:groups", - "name": "ape~1.0.0-beta.6~_repo_rules~groups" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-groups//:groups", + "name": "ape~1.0.0-beta.7~_repo_rules~groups" } }, "cosmos-head": { @@ -11911,15 +12854,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-head" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-head" } }, "head": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-head//:head", - "name": "ape~1.0.0-beta.6~_repo_rules~head" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-head//:head", + "name": "ape~1.0.0-beta.7~_repo_rules~head" } }, "cosmos-id": { @@ -11933,15 +12876,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-id" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-id" } }, "id": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-id//:id", - "name": "ape~1.0.0-beta.6~_repo_rules~id" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-id//:id", + "name": "ape~1.0.0-beta.7~_repo_rules~id" } }, "cosmos-install": { @@ -11955,15 +12898,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-install" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-install" } }, "install": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-install//:install", - "name": "ape~1.0.0-beta.6~_repo_rules~install" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-install//:install", + "name": "ape~1.0.0-beta.7~_repo_rules~install" } }, "cosmos-join": { @@ -11977,15 +12920,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-join" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-join" } }, "join": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-join//:join", - "name": "ape~1.0.0-beta.6~_repo_rules~join" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-join//:join", + "name": "ape~1.0.0-beta.7~_repo_rules~join" } }, "cosmos-kill": { @@ -11999,15 +12942,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-kill" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-kill" } }, "kill": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-kill//:kill", - "name": "ape~1.0.0-beta.6~_repo_rules~kill" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-kill//:kill", + "name": "ape~1.0.0-beta.7~_repo_rules~kill" } }, "cosmos-less": { @@ -12021,15 +12964,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-less" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-less" } }, "less": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-less//:less", - "name": "ape~1.0.0-beta.6~_repo_rules~less" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-less//:less", + "name": "ape~1.0.0-beta.7~_repo_rules~less" } }, "cosmos-life": { @@ -12043,15 +12986,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-life" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-life" } }, "life": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-life//:life", - "name": "ape~1.0.0-beta.6~_repo_rules~life" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-life//:life", + "name": "ape~1.0.0-beta.7~_repo_rules~life" } }, "cosmos-link": { @@ -12065,15 +13008,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-link" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-link" } }, "link": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-link//:link", - "name": "ape~1.0.0-beta.6~_repo_rules~link" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-link//:link", + "name": "ape~1.0.0-beta.7~_repo_rules~link" } }, "cosmos-links": { @@ -12087,15 +13030,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-links" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-links" } }, "links": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-links//:links", - "name": "ape~1.0.0-beta.6~_repo_rules~links" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-links//:links", + "name": "ape~1.0.0-beta.7~_repo_rules~links" } }, "cosmos-ln": { @@ -12109,15 +13052,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ln" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ln" } }, "ln": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ln//:ln", - "name": "ape~1.0.0-beta.6~_repo_rules~ln" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ln//:ln", + "name": "ape~1.0.0-beta.7~_repo_rules~ln" } }, "cosmos-locate": { @@ -12131,15 +13074,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-locate" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-locate" } }, "locate": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-locate//:locate", - "name": "ape~1.0.0-beta.6~_repo_rules~locate" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-locate//:locate", + "name": "ape~1.0.0-beta.7~_repo_rules~locate" } }, "cosmos-logname": { @@ -12153,15 +13096,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-logname" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-logname" } }, "logname": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-logname//:logname", - "name": "ape~1.0.0-beta.6~_repo_rules~logname" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-logname//:logname", + "name": "ape~1.0.0-beta.7~_repo_rules~logname" } }, "cosmos-ls": { @@ -12175,15 +13118,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ls" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ls" } }, "ls": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ls//:ls", - "name": "ape~1.0.0-beta.6~_repo_rules~ls" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ls//:ls", + "name": "ape~1.0.0-beta.7~_repo_rules~ls" } }, "cosmos-lua": { @@ -12197,15 +13140,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-lua" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-lua" } }, "lua": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-lua//:lua", - "name": "ape~1.0.0-beta.6~_repo_rules~lua" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lua//:lua", + "name": "ape~1.0.0-beta.7~_repo_rules~lua" } }, "cosmos-lz4": { @@ -12219,15 +13162,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-lz4" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-lz4" } }, "lz4": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-lz4//:lz4", - "name": "ape~1.0.0-beta.6~_repo_rules~lz4" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lz4//:lz4", + "name": "ape~1.0.0-beta.7~_repo_rules~lz4" } }, "cosmos-make": { @@ -12241,15 +13184,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-make" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-make" } }, "make": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-make//:make", - "name": "ape~1.0.0-beta.6~_repo_rules~make" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-make//:make", + "name": "ape~1.0.0-beta.7~_repo_rules~make" } }, "cosmos-md5sum": { @@ -12263,15 +13206,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-md5sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum" } }, "md5sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-md5sum//:md5sum", - "name": "ape~1.0.0-beta.6~_repo_rules~md5sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum//:md5sum", + "name": "ape~1.0.0-beta.7~_repo_rules~md5sum" } }, "cosmos-mkfifo": { @@ -12285,15 +13228,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mkfifo" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo" } }, "mkfifo": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mkfifo//:mkfifo", - "name": "ape~1.0.0-beta.6~_repo_rules~mkfifo" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo//:mkfifo", + "name": "ape~1.0.0-beta.7~_repo_rules~mkfifo" } }, "cosmos-mknod": { @@ -12307,15 +13250,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mknod" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mknod" } }, "mknod": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mknod//:mknod", - "name": "ape~1.0.0-beta.6~_repo_rules~mknod" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mknod//:mknod", + "name": "ape~1.0.0-beta.7~_repo_rules~mknod" } }, "cosmos-mktemp": { @@ -12329,15 +13272,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mktemp" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp" } }, "mktemp": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mktemp//:mktemp", - "name": "ape~1.0.0-beta.6~_repo_rules~mktemp" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp//:mktemp", + "name": "ape~1.0.0-beta.7~_repo_rules~mktemp" } }, "cosmos-mktemper": { @@ -12351,15 +13294,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-mktemper" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper" } }, "mktemper": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-mktemper//:mktemper", - "name": "ape~1.0.0-beta.6~_repo_rules~mktemper" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper//:mktemper", + "name": "ape~1.0.0-beta.7~_repo_rules~mktemper" } }, "cosmos-nano": { @@ -12373,15 +13316,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nano" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nano" } }, "nano": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nano//:nano", - "name": "ape~1.0.0-beta.6~_repo_rules~nano" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nano//:nano", + "name": "ape~1.0.0-beta.7~_repo_rules~nano" } }, "cosmos-nesemu1": { @@ -12395,15 +13338,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nesemu1" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1" } }, "nesemu1": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nesemu1//:nesemu1", - "name": "ape~1.0.0-beta.6~_repo_rules~nesemu1" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1//:nesemu1", + "name": "ape~1.0.0-beta.7~_repo_rules~nesemu1" } }, "cosmos-nice": { @@ -12417,15 +13360,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nice" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nice" } }, "nice": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nice//:nice", - "name": "ape~1.0.0-beta.6~_repo_rules~nice" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nice//:nice", + "name": "ape~1.0.0-beta.7~_repo_rules~nice" } }, "cosmos-ninja": { @@ -12439,15 +13382,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ninja" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ninja" } }, "ninja": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ninja//:ninja", - "name": "ape~1.0.0-beta.6~_repo_rules~ninja" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ninja//:ninja", + "name": "ape~1.0.0-beta.7~_repo_rules~ninja" } }, "cosmos-nl": { @@ -12461,15 +13404,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nl" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nl" } }, "nl": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nl//:nl", - "name": "ape~1.0.0-beta.6~_repo_rules~nl" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nl//:nl", + "name": "ape~1.0.0-beta.7~_repo_rules~nl" } }, "cosmos-nohup": { @@ -12483,15 +13426,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nohup" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nohup" } }, "nohup": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nohup//:nohup", - "name": "ape~1.0.0-beta.6~_repo_rules~nohup" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nohup//:nohup", + "name": "ape~1.0.0-beta.7~_repo_rules~nohup" } }, "cosmos-nproc": { @@ -12505,15 +13448,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-nproc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-nproc" } }, "nproc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-nproc//:nproc", - "name": "ape~1.0.0-beta.6~_repo_rules~nproc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nproc//:nproc", + "name": "ape~1.0.0-beta.7~_repo_rules~nproc" } }, "cosmos-numfmt": { @@ -12527,15 +13470,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-numfmt" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt" } }, "numfmt": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-numfmt//:numfmt", - "name": "ape~1.0.0-beta.6~_repo_rules~numfmt" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt//:numfmt", + "name": "ape~1.0.0-beta.7~_repo_rules~numfmt" } }, "cosmos-od": { @@ -12549,15 +13492,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-od" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-od" } }, "od": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-od//:od", - "name": "ape~1.0.0-beta.6~_repo_rules~od" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-od//:od", + "name": "ape~1.0.0-beta.7~_repo_rules~od" } }, "cosmos-paste": { @@ -12571,15 +13514,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-paste" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-paste" } }, "paste": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-paste//:paste", - "name": "ape~1.0.0-beta.6~_repo_rules~paste" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-paste//:paste", + "name": "ape~1.0.0-beta.7~_repo_rules~paste" } }, "cosmos-patch": { @@ -12593,15 +13536,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-patch" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-patch" } }, "patch": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-patch//:patch", - "name": "ape~1.0.0-beta.6~_repo_rules~patch" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-patch//:patch", + "name": "ape~1.0.0-beta.7~_repo_rules~patch" } }, "cosmos-pathchk": { @@ -12615,37 +13558,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pathchk" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk" } }, "pathchk": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pathchk//:pathchk", - "name": "ape~1.0.0-beta.6~_repo_rules~pathchk" - } - }, - "cosmos-pigz": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-pvWipO8MGunU157lNj5pkNwMwDYSUFjtx7nWoNxBDw8=", - "output": "pigz", - "urls": [ - "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pigz" - } - }, - "pigz": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pigz//:pigz", - "name": "ape~1.0.0-beta.6~_repo_rules~pigz" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk//:pathchk", + "name": "ape~1.0.0-beta.7~_repo_rules~pathchk" } }, "cosmos-pinky": { @@ -12659,15 +13580,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pinky" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pinky" } }, "pinky": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pinky//:pinky", - "name": "ape~1.0.0-beta.6~_repo_rules~pinky" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pinky//:pinky", + "name": "ape~1.0.0-beta.7~_repo_rules~pinky" } }, "cosmos-pledge": { @@ -12681,15 +13602,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pledge" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pledge" } }, "pledge": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pledge//:pledge", - "name": "ape~1.0.0-beta.6~_repo_rules~pledge" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pledge//:pledge", + "name": "ape~1.0.0-beta.7~_repo_rules~pledge" } }, "cosmos-pr": { @@ -12703,15 +13624,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pr" } }, "pr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pr//:pr", - "name": "ape~1.0.0-beta.6~_repo_rules~pr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pr//:pr", + "name": "ape~1.0.0-beta.7~_repo_rules~pr" } }, "cosmos-printenv": { @@ -12725,15 +13646,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-printenv" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printenv" } }, "printenv": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-printenv//:printenv", - "name": "ape~1.0.0-beta.6~_repo_rules~printenv" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printenv//:printenv", + "name": "ape~1.0.0-beta.7~_repo_rules~printenv" } }, "cosmos-printimage": { @@ -12747,15 +13668,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-printimage" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printimage" } }, "printimage": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-printimage//:printimage", - "name": "ape~1.0.0-beta.6~_repo_rules~printimage" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printimage//:printimage", + "name": "ape~1.0.0-beta.7~_repo_rules~printimage" } }, "cosmos-ptx": { @@ -12769,15 +13690,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ptx" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ptx" } }, "ptx": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ptx//:ptx", - "name": "ape~1.0.0-beta.6~_repo_rules~ptx" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ptx//:ptx", + "name": "ape~1.0.0-beta.7~_repo_rules~ptx" } }, "cosmos-pwd": { @@ -12791,15 +13712,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pwd" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pwd" } }, "pwd": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pwd//:pwd", - "name": "ape~1.0.0-beta.6~_repo_rules~pwd" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pwd//:pwd", + "name": "ape~1.0.0-beta.7~_repo_rules~pwd" } }, "cosmos-pypack1": { @@ -12813,15 +13734,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-pypack1" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1" } }, "pypack1": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-pypack1//:pypack1", - "name": "ape~1.0.0-beta.6~_repo_rules~pypack1" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1//:pypack1", + "name": "ape~1.0.0-beta.7~_repo_rules~pypack1" } }, "cosmos-python": { @@ -12835,15 +13756,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-python" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-python" } }, "python": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-python//:python", - "name": "ape~1.0.0-beta.6~_repo_rules~python" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-python//:python", + "name": "ape~1.0.0-beta.7~_repo_rules~python" } }, "cosmos-qjs": { @@ -12857,15 +13778,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-qjs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-qjs" } }, "qjs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-qjs//:qjs", - "name": "ape~1.0.0-beta.6~_repo_rules~qjs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-qjs//:qjs", + "name": "ape~1.0.0-beta.7~_repo_rules~qjs" } }, "cosmos-readlink": { @@ -12879,15 +13800,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-readlink" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-readlink" } }, "readlink": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-readlink//:readlink", - "name": "ape~1.0.0-beta.6~_repo_rules~readlink" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-readlink//:readlink", + "name": "ape~1.0.0-beta.7~_repo_rules~readlink" } }, "cosmos-realpath": { @@ -12901,15 +13822,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-realpath" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-realpath" } }, "realpath": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-realpath//:realpath", - "name": "ape~1.0.0-beta.6~_repo_rules~realpath" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-realpath//:realpath", + "name": "ape~1.0.0-beta.7~_repo_rules~realpath" } }, "cosmos-redbean": { @@ -12923,15 +13844,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-redbean" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-redbean" } }, "redbean": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-redbean//:redbean", - "name": "ape~1.0.0-beta.6~_repo_rules~redbean" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-redbean//:redbean", + "name": "ape~1.0.0-beta.7~_repo_rules~redbean" } }, "cosmos-rmdir": { @@ -12945,15 +13866,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-rmdir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir" } }, "rmdir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-rmdir//:rmdir", - "name": "ape~1.0.0-beta.6~_repo_rules~rmdir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir//:rmdir", + "name": "ape~1.0.0-beta.7~_repo_rules~rmdir" } }, "cosmos-rsync": { @@ -12967,15 +13888,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-rsync" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rsync" } }, "rsync": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-rsync//:rsync", - "name": "ape~1.0.0-beta.6~_repo_rules~rsync" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rsync//:rsync", + "name": "ape~1.0.0-beta.7~_repo_rules~rsync" } }, "cosmos-runcon": { @@ -12989,15 +13910,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-runcon" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-runcon" } }, "runcon": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-runcon//:runcon", - "name": "ape~1.0.0-beta.6~_repo_rules~runcon" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-runcon//:runcon", + "name": "ape~1.0.0-beta.7~_repo_rules~runcon" } }, "cosmos-script": { @@ -13011,15 +13932,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-script" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-script" } }, "script": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-script//:script", - "name": "ape~1.0.0-beta.6~_repo_rules~script" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-script//:script", + "name": "ape~1.0.0-beta.7~_repo_rules~script" } }, "cosmos-sdiff": { @@ -13033,15 +13954,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sdiff" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff" } }, "sdiff": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sdiff//:sdiff", - "name": "ape~1.0.0-beta.6~_repo_rules~sdiff" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff//:sdiff", + "name": "ape~1.0.0-beta.7~_repo_rules~sdiff" } }, "cosmos-sed": { @@ -13055,15 +13976,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sed" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sed" } }, "sed": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sed//:sed", - "name": "ape~1.0.0-beta.6~_repo_rules~sed" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sed//:sed", + "name": "ape~1.0.0-beta.7~_repo_rules~sed" } }, "cosmos-seq": { @@ -13077,15 +13998,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-seq" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-seq" } }, "seq": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-seq//:seq", - "name": "ape~1.0.0-beta.6~_repo_rules~seq" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-seq//:seq", + "name": "ape~1.0.0-beta.7~_repo_rules~seq" } }, "cosmos-sha1sum": { @@ -13099,15 +14020,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha1sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum" } }, "sha1sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha1sum//:sha1sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha1sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum//:sha1sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha1sum" } }, "cosmos-sha224sum": { @@ -13121,15 +14042,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha224sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum" } }, "sha224sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha224sum//:sha224sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha224sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum//:sha224sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha224sum" } }, "cosmos-sha256sum": { @@ -13143,15 +14064,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha256sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum" } }, "sha256sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha256sum//:sha256sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha256sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum//:sha256sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha256sum" } }, "cosmos-sha384sum": { @@ -13165,15 +14086,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha384sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum" } }, "sha384sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha384sum//:sha384sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha384sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum//:sha384sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha384sum" } }, "cosmos-sha512sum": { @@ -13187,15 +14108,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sha512sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum" } }, "sha512sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sha512sum//:sha512sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sha512sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum//:sha512sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sha512sum" } }, "cosmos-shred": { @@ -13209,15 +14130,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-shred" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-shred" } }, "shred": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-shred//:shred", - "name": "ape~1.0.0-beta.6~_repo_rules~shred" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shred//:shred", + "name": "ape~1.0.0-beta.7~_repo_rules~shred" } }, "cosmos-shuf": { @@ -13231,15 +14152,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-shuf" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-shuf" } }, "shuf": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-shuf//:shuf", - "name": "ape~1.0.0-beta.6~_repo_rules~shuf" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shuf//:shuf", + "name": "ape~1.0.0-beta.7~_repo_rules~shuf" } }, "cosmos-sleep": { @@ -13253,15 +14174,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sleep" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sleep" } }, "sleep": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sleep//:sleep", - "name": "ape~1.0.0-beta.6~_repo_rules~sleep" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sleep//:sleep", + "name": "ape~1.0.0-beta.7~_repo_rules~sleep" } }, "cosmos-sort": { @@ -13275,15 +14196,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sort" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sort" } }, "sort": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sort//:sort", - "name": "ape~1.0.0-beta.6~_repo_rules~sort" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sort//:sort", + "name": "ape~1.0.0-beta.7~_repo_rules~sort" } }, "cosmos-split": { @@ -13297,15 +14218,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-split" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-split" } }, "split": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-split//:split", - "name": "ape~1.0.0-beta.6~_repo_rules~split" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-split//:split", + "name": "ape~1.0.0-beta.7~_repo_rules~split" } }, "cosmos-sqlite3": { @@ -13319,15 +14240,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sqlite3" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3" } }, "sqlite3": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sqlite3//:sqlite3", - "name": "ape~1.0.0-beta.6~_repo_rules~sqlite3" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3//:sqlite3", + "name": "ape~1.0.0-beta.7~_repo_rules~sqlite3" } }, "cosmos-stat": { @@ -13341,15 +14262,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-stat" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-stat" } }, "stat": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-stat//:stat", - "name": "ape~1.0.0-beta.6~_repo_rules~stat" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stat//:stat", + "name": "ape~1.0.0-beta.7~_repo_rules~stat" } }, "cosmos-stty": { @@ -13363,15 +14284,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-stty" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-stty" } }, "stty": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-stty//:stty", - "name": "ape~1.0.0-beta.6~_repo_rules~stty" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stty//:stty", + "name": "ape~1.0.0-beta.7~_repo_rules~stty" } }, "cosmos-sum": { @@ -13385,15 +14306,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sum" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sum" } }, "sum": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sum//:sum", - "name": "ape~1.0.0-beta.6~_repo_rules~sum" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sum//:sum", + "name": "ape~1.0.0-beta.7~_repo_rules~sum" } }, "cosmos-sync": { @@ -13407,15 +14328,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-sync" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sync" } }, "sync": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-sync//:sync", - "name": "ape~1.0.0-beta.6~_repo_rules~sync" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sync//:sync", + "name": "ape~1.0.0-beta.7~_repo_rules~sync" } }, "cosmos-tac": { @@ -13429,15 +14350,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tac" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tac" } }, "tac": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tac//:tac", - "name": "ape~1.0.0-beta.6~_repo_rules~tac" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tac//:tac", + "name": "ape~1.0.0-beta.7~_repo_rules~tac" } }, "cosmos-tail": { @@ -13451,15 +14372,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tail" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tail" } }, "tail": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tail//:tail", - "name": "ape~1.0.0-beta.6~_repo_rules~tail" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tail//:tail", + "name": "ape~1.0.0-beta.7~_repo_rules~tail" } }, "cosmos-tar": { @@ -13473,15 +14394,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tar" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tar" } }, "tar": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tar//:tar", - "name": "ape~1.0.0-beta.6~_repo_rules~tar" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tar//:tar", + "name": "ape~1.0.0-beta.7~_repo_rules~tar" } }, "cosmos-tee": { @@ -13495,15 +14416,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tee" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tee" } }, "tee": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tee//:tee", - "name": "ape~1.0.0-beta.6~_repo_rules~tee" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tee//:tee", + "name": "ape~1.0.0-beta.7~_repo_rules~tee" } }, "cosmos-test": { @@ -13517,15 +14438,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-test" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-test" } }, "test": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-test//:test", - "name": "ape~1.0.0-beta.6~_repo_rules~test" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-test//:test", + "name": "ape~1.0.0-beta.7~_repo_rules~test" } }, "cosmos-tidy": { @@ -13539,15 +14460,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tidy" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tidy" } }, "tidy": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tidy//:tidy", - "name": "ape~1.0.0-beta.6~_repo_rules~tidy" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tidy//:tidy", + "name": "ape~1.0.0-beta.7~_repo_rules~tidy" } }, "cosmos-timeout": { @@ -13561,15 +14482,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-timeout" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-timeout" } }, "timeout": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-timeout//:timeout", - "name": "ape~1.0.0-beta.6~_repo_rules~timeout" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-timeout//:timeout", + "name": "ape~1.0.0-beta.7~_repo_rules~timeout" } }, "cosmos-tmux": { @@ -13583,15 +14504,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tmux" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tmux" } }, "tmux": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tmux//:tmux", - "name": "ape~1.0.0-beta.6~_repo_rules~tmux" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tmux//:tmux", + "name": "ape~1.0.0-beta.7~_repo_rules~tmux" } }, "cosmos-touch": { @@ -13605,15 +14526,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-touch" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-touch" } }, "touch": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-touch//:touch", - "name": "ape~1.0.0-beta.6~_repo_rules~touch" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-touch//:touch", + "name": "ape~1.0.0-beta.7~_repo_rules~touch" } }, "cosmos-tr": { @@ -13627,15 +14548,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tr" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tr" } }, "tr": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tr//:tr", - "name": "ape~1.0.0-beta.6~_repo_rules~tr" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tr//:tr", + "name": "ape~1.0.0-beta.7~_repo_rules~tr" } }, "cosmos-tree": { @@ -13649,15 +14570,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tree" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tree" } }, "tree": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tree//:tree", - "name": "ape~1.0.0-beta.6~_repo_rules~tree" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tree//:tree", + "name": "ape~1.0.0-beta.7~_repo_rules~tree" } }, "cosmos-true": { @@ -13671,15 +14592,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-true" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-true" } }, "true": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-true//:true", - "name": "ape~1.0.0-beta.6~_repo_rules~true" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-true//:true", + "name": "ape~1.0.0-beta.7~_repo_rules~true" } }, "cosmos-truncate": { @@ -13693,15 +14614,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-truncate" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-truncate" } }, "truncate": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-truncate//:truncate", - "name": "ape~1.0.0-beta.6~_repo_rules~truncate" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-truncate//:truncate", + "name": "ape~1.0.0-beta.7~_repo_rules~truncate" } }, "cosmos-tsort": { @@ -13715,15 +14636,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tsort" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tsort" } }, "tsort": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tsort//:tsort", - "name": "ape~1.0.0-beta.6~_repo_rules~tsort" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tsort//:tsort", + "name": "ape~1.0.0-beta.7~_repo_rules~tsort" } }, "cosmos-tty": { @@ -13737,15 +14658,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-tty" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-tty" } }, "tty": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-tty//:tty", - "name": "ape~1.0.0-beta.6~_repo_rules~tty" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tty//:tty", + "name": "ape~1.0.0-beta.7~_repo_rules~tty" } }, "cosmos-ttyinfo": { @@ -13759,15 +14680,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-ttyinfo" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo" } }, "ttyinfo": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-ttyinfo//:ttyinfo", - "name": "ape~1.0.0-beta.6~_repo_rules~ttyinfo" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo//:ttyinfo", + "name": "ape~1.0.0-beta.7~_repo_rules~ttyinfo" } }, "cosmos-unbourne": { @@ -13781,15 +14702,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unbourne" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne" } }, "unbourne": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unbourne//:unbourne", - "name": "ape~1.0.0-beta.6~_repo_rules~unbourne" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne//:unbourne", + "name": "ape~1.0.0-beta.7~_repo_rules~unbourne" } }, "cosmos-unexpand": { @@ -13803,15 +14724,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unexpand" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand" } }, "unexpand": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unexpand//:unexpand", - "name": "ape~1.0.0-beta.6~_repo_rules~unexpand" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand//:unexpand", + "name": "ape~1.0.0-beta.7~_repo_rules~unexpand" } }, "cosmos-uniq": { @@ -13825,15 +14746,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-uniq" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uniq" } }, "uniq": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-uniq//:uniq", - "name": "ape~1.0.0-beta.6~_repo_rules~uniq" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uniq//:uniq", + "name": "ape~1.0.0-beta.7~_repo_rules~uniq" } }, "cosmos-unlink": { @@ -13847,15 +14768,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unlink" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unlink" } }, "unlink": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unlink//:unlink", - "name": "ape~1.0.0-beta.6~_repo_rules~unlink" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unlink//:unlink", + "name": "ape~1.0.0-beta.7~_repo_rules~unlink" } }, "cosmos-unzip": { @@ -13869,15 +14790,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-unzip" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-unzip" } }, "unzip": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-unzip//:unzip", - "name": "ape~1.0.0-beta.6~_repo_rules~unzip" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unzip//:unzip", + "name": "ape~1.0.0-beta.7~_repo_rules~unzip" } }, "cosmos-uptime": { @@ -13891,15 +14812,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-uptime" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uptime" } }, "uptime": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-uptime//:uptime", - "name": "ape~1.0.0-beta.6~_repo_rules~uptime" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uptime//:uptime", + "name": "ape~1.0.0-beta.7~_repo_rules~uptime" } }, "cosmos-users": { @@ -13913,15 +14834,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-users" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-users" } }, "users": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-users//:users", - "name": "ape~1.0.0-beta.6~_repo_rules~users" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-users//:users", + "name": "ape~1.0.0-beta.7~_repo_rules~users" } }, "cosmos-vdir": { @@ -13935,15 +14856,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-vdir" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-vdir" } }, "vdir": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-vdir//:vdir", - "name": "ape~1.0.0-beta.6~_repo_rules~vdir" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vdir//:vdir", + "name": "ape~1.0.0-beta.7~_repo_rules~vdir" } }, "cosmos-verynice": { @@ -13957,15 +14878,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-verynice" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-verynice" } }, "verynice": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-verynice//:verynice", - "name": "ape~1.0.0-beta.6~_repo_rules~verynice" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-verynice//:verynice", + "name": "ape~1.0.0-beta.7~_repo_rules~verynice" } }, "cosmos-vim": { @@ -13979,15 +14900,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-vim" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-vim" } }, "vim": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-vim//:vim", - "name": "ape~1.0.0-beta.6~_repo_rules~vim" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vim//:vim", + "name": "ape~1.0.0-beta.7~_repo_rules~vim" } }, "cosmos-wall": { @@ -14001,15 +14922,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-wall" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-wall" } }, "wall": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wall//:wall", - "name": "ape~1.0.0-beta.6~_repo_rules~wall" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wall//:wall", + "name": "ape~1.0.0-beta.7~_repo_rules~wall" } }, "cosmos-wc": { @@ -14023,15 +14944,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-wc" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-wc" } }, "wc": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wc//:wc", - "name": "ape~1.0.0-beta.6~_repo_rules~wc" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wc//:wc", + "name": "ape~1.0.0-beta.7~_repo_rules~wc" } }, "cosmos-wget": { @@ -14045,15 +14966,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-wget" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-wget" } }, "wget": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-wget//:wget", - "name": "ape~1.0.0-beta.6~_repo_rules~wget" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wget//:wget", + "name": "ape~1.0.0-beta.7~_repo_rules~wget" } }, "cosmos-who": { @@ -14067,15 +14988,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-who" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-who" } }, "who": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-who//:who", - "name": "ape~1.0.0-beta.6~_repo_rules~who" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-who//:who", + "name": "ape~1.0.0-beta.7~_repo_rules~who" } }, "cosmos-whoami": { @@ -14089,15 +15010,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-whoami" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-whoami" } }, "whoami": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-whoami//:whoami", - "name": "ape~1.0.0-beta.6~_repo_rules~whoami" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-whoami//:whoami", + "name": "ape~1.0.0-beta.7~_repo_rules~whoami" } }, "cosmos-xargs": { @@ -14111,15 +15032,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-xargs" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-xargs" } }, "xargs": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-xargs//:xargs", - "name": "ape~1.0.0-beta.6~_repo_rules~xargs" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xargs//:xargs", + "name": "ape~1.0.0-beta.7~_repo_rules~xargs" } }, "cosmos-xz": { @@ -14133,15 +15054,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-xz" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-xz" } }, "xz": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-xz//:xz", - "name": "ape~1.0.0-beta.6~_repo_rules~xz" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xz//:xz", + "name": "ape~1.0.0-beta.7~_repo_rules~xz" } }, "cosmos-yes": { @@ -14155,15 +15076,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-yes" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-yes" } }, "yes": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-yes//:yes", - "name": "ape~1.0.0-beta.6~_repo_rules~yes" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-yes//:yes", + "name": "ape~1.0.0-beta.7~_repo_rules~yes" } }, "cosmos-zip": { @@ -14177,15 +15098,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-zip" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-zip" } }, "zip": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zip//:zip", - "name": "ape~1.0.0-beta.6~_repo_rules~zip" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zip//:zip", + "name": "ape~1.0.0-beta.7~_repo_rules~zip" } }, "cosmos-zsh": { @@ -14199,15 +15120,15 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-zsh" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-zsh" } }, "zsh": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zsh//:zsh", - "name": "ape~1.0.0-beta.6~_repo_rules~zsh" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zsh//:zsh", + "name": "ape~1.0.0-beta.7~_repo_rules~zsh" } }, "cosmos-zstd": { @@ -14221,15 +15142,257 @@ "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": "ape~1.0.0-beta.6~_repo_rules~cosmos-zstd" + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-zstd" } }, "zstd": { - "bzlFile": "@@ape~1.0.0-beta.6//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.6~_repo_rules~cosmos-zstd//:zstd", - "name": "ape~1.0.0-beta.6~_repo_rules~zstd" + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zstd//:zstd", + "name": "ape~1.0.0-beta.7~_repo_rules~zstd" + } + }, + "cosmos-chmod": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", + "output": "chmod", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chmod" + } + }, + "chmod": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chmod//:chmod", + "name": "ape~1.0.0-beta.7~_repo_rules~chmod" + } + }, + "cosmos-cp": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", + "output": "cp", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cp" + } + }, + "cp": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cp//:cp", + "name": "ape~1.0.0-beta.7~_repo_rules~cp" + } + }, + "cosmos-dd": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", + "output": "dd", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dd" + } + }, + "dd": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dd//:dd", + "name": "ape~1.0.0-beta.7~_repo_rules~dd" + } + }, + "cosmos-echo": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", + "output": "echo", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-echo" + } + }, + "echo": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-echo//:echo", + "name": "ape~1.0.0-beta.7~_repo_rules~echo" + } + }, + "cosmos-gzip": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", + "output": "gzip", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gzip" + } + }, + "gzip": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gzip//:gzip", + "name": "ape~1.0.0-beta.7~_repo_rules~gzip" + } + }, + "cosmos-mkdir": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", + "output": "mkdir", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir" + } + }, + "mkdir": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir//:mkdir", + "name": "ape~1.0.0-beta.7~_repo_rules~mkdir" + } + }, + "cosmos-mv": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", + "output": "mv", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mv" + } + }, + "mv": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mv//:mv", + "name": "ape~1.0.0-beta.7~_repo_rules~mv" + } + }, + "cosmos-printf": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", + "output": "printf", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printf" + } + }, + "printf": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printf//:printf", + "name": "ape~1.0.0-beta.7~_repo_rules~printf" + } + }, + "cosmos-rm": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", + "output": "rm", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rm" + } + }, + "rm": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rm//:rm", + "name": "ape~1.0.0-beta.7~_repo_rules~rm" + } + }, + "cosmos-uname": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", + "output": "uname", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uname" + } + }, + "uname": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uname//:uname", + "name": "ape~1.0.0-beta.7~_repo_rules~uname" + } + }, + "cosmos-pigz": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "output": "pigz", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", + "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" + ], + "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pigz" + } + }, + "pigz": { + "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pigz//:pigz", + "name": "ape~1.0.0-beta.7~_repo_rules~pigz" } } } @@ -14258,6 +15421,474 @@ } } }, + "@@aspect_bazel_lib~2.7.0//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "xkCrElz5fQuBa39cTFFUicDgs1jDcoxP+48jsvXon4M=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "expand_template_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_windows_amd64", + "platform": "windows_amd64" + } + }, + "copy_to_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_amd64", + "platform": "darwin_amd64", + "version": "1.7" + } + }, + "copy_to_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_arm64", + "platform": "linux_arm64", + "version": "1.7" + } + }, + "coreutils_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_arm64", + "platform": "darwin_arm64", + "version": "0.0.23" + } + }, + "copy_to_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "bsd_tar_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_arm64", + "platform": "linux_arm64" + } + }, + "copy_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "coreutils_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_amd64", + "platform": "darwin_amd64", + "version": "0.0.23" + } + }, + "coreutils_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_arm64", + "platform": "linux_arm64", + "version": "0.0.23" + } + }, + "yq_linux_s390x": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_s390x", + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq" + } + }, + "expand_template_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "copy_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_arm64", + "platform": "darwin_arm64", + "version": "1.7" + } + }, + "yq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_amd64", + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "copy_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "expand_template_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_toolchains", + "user_repository_name": "expand_template" + } + }, + "bats_assert": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_assert", + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", + "urls": [ + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" + ], + "strip_prefix": "bats-assert-2.1.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "copy_to_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_amd64", + "platform": "linux_amd64" + } + }, + "yq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_toolchains", + "user_repository_name": "yq" + } + }, + "bats_support": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_support", + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", + "urls": [ + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" + ], + "strip_prefix": "bats-support-0.3.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bsd_tar_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq" + } + }, + "expand_template_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "bsd_tar_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_to_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "coreutils_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_amd64", + "platform": "linux_amd64", + "version": "0.0.23" + } + }, + "copy_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_toolchains", + "user_repository_name": "copy_directory" + } + }, + "yq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_amd64", + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "copy_to_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "coreutils_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_toolchains", + "user_repository_name": "coreutils" + } + }, + "copy_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "bats_file": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_file", + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", + "urls": [ + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" + ], + "strip_prefix": "bats-file-0.4.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "expand_template_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_arm64", + "platform": "linux_arm64" + } + }, + "jq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_amd64", + "platform": "linux_amd64", + "version": "1.7" + } + }, + "bsd_tar_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "tar_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_toolchains", + "user_repository_name": "bsd_tar" + } + }, + "bats_toolchains": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_toolchains", + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", + "urls": [ + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" + ], + "strip_prefix": "bats-core-1.10.0", + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" + } + }, + "yq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_windows_amd64", + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "jq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_windows_amd64", + "platform": "windows_amd64", + "version": "1.7" + } + }, + "expand_template_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "yq_linux_ppc64le": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_ppc64le", + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "copy_to_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_toolchains", + "user_repository_name": "copy_to_directory" + } + }, + "jq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_toolchains", + "user_repository_name": "jq" + } + }, + "copy_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "yq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_arm64", + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "coreutils_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_windows_amd64", + "platform": "windows_amd64", + "version": "0.0.23" + } + }, + "yq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_arm64", + "platform": "linux_arm64", + "version": "4.25.2" + } + } + } + } + }, "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { "general": { "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", @@ -14299,7 +15930,7 @@ }, "@@rules_coreutils~1.0.0-beta.1//:MODULE.bazel%_repo_rules": { "general": { - "bzlTransitiveDigest": "IF5Hxe4PJUTAHHbk22XkvaeQJe/ELeNXu0QuEfvgOnE=", + "bzlTransitiveDigest": "QYg9cENRlVIyQWUP8sqx7qnNYYyVopSZwiYlGZeazn8=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { diff --git a/e2e/WORKSPACE b/e2e/WORKSPACE deleted file mode 100644 index e69de29..0000000 diff --git a/e2e/extract/bzip2/BUILD.bazel b/e2e/extract/bzip2/BUILD.bazel new file mode 100644 index 0000000..437f82a --- /dev/null +++ b/e2e/extract/bzip2/BUILD.bazel @@ -0,0 +1,40 @@ +load("@rules_diff//diff/file/test:defs.bzl", "diff_file_test") +load("@rules_tar//tar/extract:defs.bzl", "tar_extract") + +tar_extract( + name = "goodbye-world", + src = "//fixture:fixture.tar.bz2", + outs = [ + "fixture/goodbye-world.txt", + ], +) + +diff_file_test( + name = "goodbye-world-diff", + size = "small", + a = "//fixture:goodbye-world.txt", + b = ":goodbye-world", +) + +tar_extract( + name = "multiple", + src = "//fixture:fixture.tar.bz2", + outs = [ + "fixture/hello-world.txt", + "fixture/nested/goodbye-world.txt", + ], +) + +diff_file_test( + name = "hello-world-diff", + size = "small", + a = "//fixture:hello-world.txt", + b = ":fixture/hello-world.txt", +) + +diff_file_test( + name = "nested-goodbye-world-diff", + size = "small", + a = "//fixture/nested:goodbye-world.txt", + b = ":fixture/nested/goodbye-world.txt", +) diff --git a/e2e/extract/gzip/BUILD.bazel b/e2e/extract/gzip/BUILD.bazel new file mode 100644 index 0000000..203b1bd --- /dev/null +++ b/e2e/extract/gzip/BUILD.bazel @@ -0,0 +1,40 @@ +load("@rules_diff//diff/file/test:defs.bzl", "diff_file_test") +load("@rules_tar//tar/extract:defs.bzl", "tar_extract") + +tar_extract( + name = "goodbye-world", + src = "//fixture:fixture.tar.gz", + outs = [ + "fixture/goodbye-world.txt", + ], +) + +diff_file_test( + name = "goodbye-world-diff", + size = "small", + a = "//fixture:goodbye-world.txt", + b = ":goodbye-world", +) + +tar_extract( + name = "multiple", + src = "//fixture:fixture.tar.gz", + outs = [ + "fixture/hello-world.txt", + "fixture/nested/goodbye-world.txt", + ], +) + +diff_file_test( + name = "hello-world-diff", + size = "small", + a = "//fixture:hello-world.txt", + b = ":fixture/hello-world.txt", +) + +diff_file_test( + name = "nested-goodbye-world-diff", + size = "small", + a = "//fixture/nested:goodbye-world.txt", + b = ":fixture/nested/goodbye-world.txt", +) diff --git a/e2e/extract/zstd/BUILD.bazel b/e2e/extract/zstd/BUILD.bazel new file mode 100644 index 0000000..5d7f326 --- /dev/null +++ b/e2e/extract/zstd/BUILD.bazel @@ -0,0 +1,40 @@ +load("@rules_diff//diff/file/test:defs.bzl", "diff_file_test") +load("@rules_tar//tar/extract:defs.bzl", "tar_extract") + +tar_extract( + name = "goodbye-world", + src = "//fixture:fixture.tar.zst", + outs = [ + "fixture/goodbye-world.txt", + ], +) + +diff_file_test( + name = "goodbye-world-diff", + size = "small", + a = "//fixture:goodbye-world.txt", + b = ":goodbye-world", +) + +tar_extract( + name = "multiple", + src = "//fixture:fixture.tar.zst", + outs = [ + "fixture/hello-world.txt", + "fixture/nested/goodbye-world.txt", + ], +) + +diff_file_test( + name = "hello-world-diff", + size = "small", + a = "//fixture:hello-world.txt", + b = ":fixture/hello-world.txt", +) + +diff_file_test( + name = "nested-goodbye-world-diff", + size = "small", + a = "//fixture/nested:goodbye-world.txt", + b = ":fixture/nested/goodbye-world.txt", +) diff --git a/e2e/fixture/BUILD.bazel b/e2e/fixture/BUILD.bazel index 1134d43..0a5e43a 100644 --- a/e2e/fixture/BUILD.bazel +++ b/e2e/fixture/BUILD.bazel @@ -3,6 +3,9 @@ exports_files( "hello-world.txt", "goodbye-world.txt", "fixture.tar", + "fixture.tar.bz2", + "fixture.tar.gz", + "fixture.tar.zst", ], visibility = ["//:__subpackages__"], ) diff --git a/e2e/fixture/fixture.tar.bz2 b/e2e/fixture/fixture.tar.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..09c1df4584a367c3c77461d00c8936dfed37d5e7 GIT binary patch literal 331 zcmV-R0kr-?T4*^jL0KkKSx!$_lmG#?UxUgJUNGB((N&r1M>bairNE_7jX0PUF3O2aS|K>O@h)OYQY+?%9*@Yy~3 z3zeoi=vHVmtbcE;4n~H|x;Bcr=Os`IErgT9O}!cHzB8+ba#)+PGF`uVYTN4Z)!e?c zT~lRtu*romhe8}zhrcogD&eTy$|WfG9+wp%DX7w!O{{)b@wzVB53XgT=5Grcv{ zGS>i;`meR~Um*bXKLjWJN1e$WFbAor|NkG)|3$6=Ce8n&|0p!0{)d3(|G4?O|MN`* xKj=SaiuxY{>VMpL{x5P3FlqiD{Rb_n|3RSnpCAZ=AP6EZ-T+o-&{qH`0084AwnP8` literal 0 HcmV?d00001 diff --git a/e2e/fixture/fixture.tar.zst b/e2e/fixture/fixture.tar.zst new file mode 100644 index 0000000000000000000000000000000000000000..a26adee8bb8504f89a880b62e97b41b1f39c95fb GIT binary patch literal 303 zcmV+~0nq*^wJ-f-04EIz0P+eV9#Bc#1|y?Ea%`_NcwSYsB#y$TrIo$G3k?2DauG;L zDIc$LRZ?TsNQ7F|W&BZUwQG6-;Z4RTFI$#Y2tWb_M<;)M0vvl}9?VOyCK`&Ukf0gG zG3ffAmbm8d&`FC4f0i|&{=9ft|Np!E|HnN?tfeuAfo?chj3pFJ>y-FJ2aO4b9}47N4RFF$5DNC7zyPcQV*^-G1sDJv z^a!E=nJ|D1q*py%>RA(v0%+C%yn%fHtN`EjlA(?rW-}bWC|J9q_yiY#A{{_u41iu} zGJw~&y75UMd=3n(x^>viaQsFvfG;=%73h?w-1#Ul_VDlor;`RpH`gvD^#ld!?)K?* Bf;9jD literal 0 HcmV?d00001 diff --git a/e2e/unpack/bzip2/BUILD.bazel b/e2e/unpack/bzip2/BUILD.bazel new file mode 100644 index 0000000..c503f1c --- /dev/null +++ b/e2e/unpack/bzip2/BUILD.bazel @@ -0,0 +1,14 @@ +load("@rules_tar//tar/unpack:defs.bzl", "tar_unpack") +load("@rules_diff//diff/directory/test:defs.bzl", "diff_directory_test") + +tar_unpack( + name = "unpack", + src = "//fixture:fixture.tar.bz2", +) + +diff_directory_test( + name = "diff", + size = "small", + a = "//fixture/directory:all", + b = ":unpack", +) diff --git a/e2e/unpack/gzip/BUILD.bazel b/e2e/unpack/gzip/BUILD.bazel new file mode 100644 index 0000000..80d0f7e --- /dev/null +++ b/e2e/unpack/gzip/BUILD.bazel @@ -0,0 +1,14 @@ +load("@rules_tar//tar/unpack:defs.bzl", "tar_unpack") +load("@rules_diff//diff/directory/test:defs.bzl", "diff_directory_test") + +tar_unpack( + name = "unpack", + src = "//fixture:fixture.tar.gz", +) + +diff_directory_test( + name = "diff", + size = "small", + a = "//fixture/directory:all", + b = ":unpack", +) diff --git a/e2e/unpack/zstd/BUILD.bazel b/e2e/unpack/zstd/BUILD.bazel new file mode 100644 index 0000000..139573c --- /dev/null +++ b/e2e/unpack/zstd/BUILD.bazel @@ -0,0 +1,14 @@ +load("@rules_tar//tar/unpack:defs.bzl", "tar_unpack") +load("@rules_diff//diff/directory/test:defs.bzl", "diff_directory_test") + +tar_unpack( + name = "unpack", + src = "//fixture:fixture.tar.zst", +) + +diff_directory_test( + name = "diff", + size = "small", + a = "//fixture/directory:all", + b = ":unpack", +) diff --git a/package-lock.json b/package-lock.json index b48e203..8f3f0c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "ruleset", + "name": "rules_tar", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/tar/extract/rule.bzl b/tar/extract/rule.bzl index bca0700..062cf54 100644 --- a/tar/extract/rule.bzl +++ b/tar/extract/rule.bzl @@ -1,3 +1,5 @@ +load("//tar:path.bzl", "path") + visibility("//tar/...") DOC = """Extracts files from a tarball @@ -20,7 +22,7 @@ ATTRS = { "src": attr.label( doc = "An archive to extract decleared files from.", mandatory = True, - allow_single_file = [".tar"], + allow_single_file = [".tar", ".tar.gz", ".tar.bz2", ".tar.zst"], ), "outs": attr.output_list( doc = "Paths within the archive to extract.", @@ -34,8 +36,27 @@ def _name(label): def implementation(ctx): tar = ctx.toolchains["//tar/toolchain/tar:type"] + zstd = ctx.toolchains["@rules_zstd//zstd/toolchain/zstd:type"] + bzip2 = ctx.toolchains["@rules_bzip2//bzip2/toolchain/bzip2:type"] + pigz = ctx.toolchains["@rules_gzip//gzip/toolchain/pigz:type"] + + tools, env = path(ctx, { + "zstd": "@rules_zstd//zstd/toolchain/zstd:type", + "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", + "pigz": "@rules_gzip//gzip/toolchain/pigz:type", + }) args = ctx.actions.args() + + if ctx.file.src.extension == ".gz": + args.add("-z") + + elif ctx.file.src.extension == ".bz2": + args.add("-j") + + elif ctx.file.src.extension == ".zst": + args.add("--zstd") + args.add("-C").add("{}/{}".format(ctx.bin_dir.path, ctx.label.package)) args.add("-xvf").add(ctx.file.src.path) args.add_all(ctx.attr.outs, map_each = _name) @@ -45,9 +66,11 @@ def implementation(ctx): inputs = [ctx.file.src], arguments = [args], executable = tar.run, + tools = tools, mnemonic = "TarExtract", progress_message = "extracting %{input} files", toolchain = "//tar/toolchain/tar:type", + env = env, ) return DefaultInfo(files = depset(ctx.outputs.outs)) @@ -56,7 +79,12 @@ tar_extract = rule( doc = DOC, attrs = ATTRS, implementation = implementation, - toolchains = ["//tar/toolchain/tar:type"], + toolchains = [ + "//tar/toolchain/tar:type", + "@rules_zstd//zstd/toolchain/zstd:type", + "@rules_bzip2//bzip2/toolchain/bzip2:type", + "@rules_gzip//gzip/toolchain/pigz:type", + ], ) extract = tar_extract diff --git a/tar/path.bzl b/tar/path.bzl new file mode 100644 index 0000000..eaf1121 --- /dev/null +++ b/tar/path.bzl @@ -0,0 +1,20 @@ +def path(ctx, links): + tools = [] + + for basename, type in links.items(): + symlink = ctx.actions.declare_file("{}.bin/{}".format(ctx.label.name, basename)) + toolchain = ctx.toolchains[type] + + ctx.actions.symlink( + output = symlink, + target_file = toolchain.executable, + is_executable = True, + ) + tools.append(symlink) + tools.append(toolchain.run) + + env = { + "PATH": "/usr/bin:/usr/local/bin:{}".format(tools[0].dirname), + } + + return tools, env diff --git a/tar/unpack/rule.bzl b/tar/unpack/rule.bzl index eafe3ed..5506d07 100644 --- a/tar/unpack/rule.bzl +++ b/tar/unpack/rule.bzl @@ -1,3 +1,5 @@ +load("//tar:path.bzl", "path") + visibility("//tar/...") DOC = """unpacks files from a tarball @@ -15,16 +17,35 @@ ATTRS = { "src": attr.label( doc = "An archive to extract into a declared directory (`TreeArtifact`).", mandatory = True, - allow_single_file = [".tar"], + allow_single_file = [".tar", ".tar.gz", ".tar.bz2", ".tar.zst"], ), } def implementation(ctx): tar = ctx.toolchains["//tar/toolchain/tar:type"] + zstd = ctx.toolchains["@rules_zstd//zstd/toolchain/zstd:type"] + bzip2 = ctx.toolchains["@rules_bzip2//bzip2/toolchain/bzip2:type"] + pigz = ctx.toolchains["@rules_gzip//gzip/toolchain/pigz:type"] output_dir = ctx.actions.declare_directory(ctx.attr.name) + tools, env = path(ctx, { + "zstd": "@rules_zstd//zstd/toolchain/zstd:type", + "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", + "pigz": "@rules_gzip//gzip/toolchain/pigz:type", + }) + args = ctx.actions.args() + + if ctx.file.src.extension == ".gz": + args.add("-z") + + elif ctx.file.src.extension == ".bz2": + args.add("-j") + + elif ctx.file.src.extension == ".zst": + args.add("--zstd") + args.add("-xvf").add(ctx.file.src.path) args.add("-C").add(output_dir.path) @@ -33,8 +54,10 @@ def implementation(ctx): inputs = [ctx.file.src], arguments = [args], executable = tar.run, + tools = tools, mnemonic = "TarUnpack", - progress_message = "unpacking %{inputs}", + progress_message = "unpacking %{input}", + env = env, ) depset_files = depset([output_dir]) @@ -44,7 +67,12 @@ tar_unpack = rule( doc = DOC, attrs = ATTRS, implementation = implementation, - toolchains = ["//tar/toolchain/tar:type"], + toolchains = [ + "//tar/toolchain/tar:type", + "@rules_zstd//zstd/toolchain/zstd:type", + "@rules_bzip2//bzip2/toolchain/bzip2:type", + "@rules_gzip//gzip/toolchain/pigz:type", + ], ) unpack = tar_unpack -- GitLab From 96f302082f03f44bb8178929456ee21b9716c669 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 18 Jun 2024 12:55:16 +0100 Subject: [PATCH 2/5] chore: updated ape version and renamed `pigz` to `gzip` inside the rule files --- .bazelrc | 3 - MODULE.bazel | 2 +- MODULE.bazel.lock | 6995 ++++++--------------------------------- e2e/MODULE.bazel | 3 - e2e/MODULE.bazel.lock | 4449 +++++++++++++------------ e2e/fixture/BUILD.bazel | 1 + tar/extract/rule.bzl | 5 +- tar/path.bzl | 6 +- tar/unpack/rule.bzl | 5 +- 9 files changed, 3378 insertions(+), 8091 deletions(-) diff --git a/.bazelrc b/.bazelrc index d394b1d..31d7aa5 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,6 +1,3 @@ -# Enable `bzlmod` -common --enable_bzlmod - # Build cache build --experimental_guard_against_concurrent_changes diff --git a/MODULE.bazel b/MODULE.bazel index 660aead..be88c45 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -10,7 +10,7 @@ bazel_dep(name = "rules_gzip", version = "1.0.0-beta.1") bazel_dep(name = "rules_bzip2", version = "1.0.0-beta.1") bazel_dep(name = "rules_zstd", version = "1.0.0-beta.1") bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.9") -bazel_dep(name = "ape", version = "1.0.0-beta.6") +bazel_dep(name = "ape", version = "1.0.0-beta.11") export = use_extension("@toolchain_utils//toolchain/export:defs.bzl", "toolchain_export") use_repo(export, "ape-tar") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 05621dd..a561677 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 3, - "moduleFileHash": "ab81c59229521a9beec99e822488dacf951a3e638a636e0e6e2bbefa8726d086", + "moduleFileHash": "52521da1b9c14123fc132ab71aca158541bc9d4b14588798694fc5380f425873", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -95,7 +95,7 @@ "rules_bzip2": "rules_bzip2@1.0.0-beta.1", "rules_zstd": "rules_zstd@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } @@ -177,7 +177,7 @@ "deps": { "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "rules_coreutils": "rules_coreutils@1.0.0-beta.1", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -273,7 +273,7 @@ "deps": { "rules_coreutils": "rules_coreutils@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -370,7 +370,7 @@ "bazel_skylib": "bazel_skylib@1.5.0", "aspect_bazel_lib": "aspect_bazel_lib@2.7.0", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -443,7 +443,7 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -462,10 +462,10 @@ } } }, - "ape@1.0.0-beta.7": { + "ape@1.0.0-beta.11": { "name": "ape", - "version": "1.0.0-beta.7", - "key": "ape@1.0.0-beta.7", + "version": "1.0.0-beta.11", + "key": "ape@1.0.0-beta.11", "repoName": "ape", "executionPlatformsToRegister": [], "toolchainsToRegister": [ @@ -475,9 +475,9 @@ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-beta.7", + "usingModule": "ape@1.0.0-beta.11", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", "line": 0, "column": 0 }, @@ -492,6 +492,8 @@ "ape.pe": "ape.pe", "launcher": "launcher", "resolved-ape": "resolved-ape", + "cosmos-assimilate": "cosmos-assimilate", + "assimilate": "assimilate", "cosmos-awk": "cosmos-awk", "awk": "awk", "cosmos-b2sum": "cosmos-b2sum", @@ -843,8 +845,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 17, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 18, "column": 17 } }, @@ -858,8 +860,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 36, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 37, "column": 7 } }, @@ -877,8 +879,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 45, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 46, "column": 14 } }, @@ -894,8 +896,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 58, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 59, "column": 8 } }, @@ -913,8 +915,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -932,8 +934,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -951,8 +953,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -963,8 +965,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 85, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 86, "column": 3 } }, @@ -982,8 +984,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 87, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 88, "column": 7 } }, @@ -995,11 +997,43 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 100, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 101, "column": 9 } }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-zBP7dVhBaUKyxbSlqVWKjC293c+t0NSMfSYW0/FnV0s=", + "output": "assimilate", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/assimilate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/assimilate" + ], + "name": "cosmos-assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-assimilate//:assimilate", + "name": "assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, + "column": 23 + } + }, { "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { @@ -1014,8 +1048,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1027,8 +1061,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1046,8 +1080,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1059,8 +1093,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1078,8 +1112,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1091,8 +1125,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1110,8 +1144,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1123,8 +1157,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1142,8 +1176,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1155,8 +1189,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1174,8 +1208,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1187,8 +1221,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1206,8 +1240,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1219,8 +1253,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1238,8 +1272,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1251,8 +1285,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1270,8 +1304,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1283,8 +1317,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1302,8 +1336,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1315,8 +1349,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1334,8 +1368,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1347,8 +1381,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1366,8 +1400,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1379,8 +1413,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1398,8 +1432,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1411,8 +1445,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1430,8 +1464,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1443,8 +1477,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1462,8 +1496,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1475,8 +1509,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1494,8 +1528,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1507,8 +1541,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1526,8 +1560,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1539,8 +1573,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1558,8 +1592,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1571,8 +1605,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1590,8 +1624,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1603,8 +1637,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1622,8 +1656,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1635,8 +1669,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1654,8 +1688,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1667,8 +1701,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1686,8 +1720,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1699,8 +1733,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1718,8 +1752,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1731,8 +1765,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1750,8 +1784,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1763,8 +1797,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1782,8 +1816,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1795,8 +1829,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1814,8 +1848,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1827,8 +1861,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1846,8 +1880,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1859,8 +1893,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1878,8 +1912,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1891,8 +1925,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1910,8 +1944,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1923,8 +1957,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1942,8 +1976,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1955,8 +1989,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -1974,8 +2008,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -1987,8 +2021,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2006,8 +2040,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2019,8 +2053,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2038,8 +2072,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2051,8 +2085,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2070,8 +2104,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2083,8 +2117,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2102,8 +2136,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2115,8 +2149,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2134,8 +2168,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2147,8 +2181,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2166,8 +2200,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2179,8 +2213,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2198,8 +2232,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2211,8 +2245,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2230,8 +2264,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2243,8 +2277,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2262,8 +2296,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2275,8 +2309,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2294,8 +2328,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2307,8 +2341,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2326,8 +2360,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2339,8 +2373,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2358,8 +2392,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2371,8 +2405,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2390,8 +2424,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2403,8 +2437,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2422,8 +2456,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2435,8 +2469,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2454,8 +2488,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2467,8 +2501,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2486,8 +2520,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2499,8 +2533,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2518,8 +2552,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2531,8 +2565,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2550,8 +2584,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2563,8 +2597,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2582,8 +2616,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2595,8 +2629,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2614,8 +2648,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2627,8 +2661,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2646,8 +2680,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2659,8 +2693,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2678,8 +2712,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2691,8 +2725,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2710,8 +2744,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2723,8 +2757,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2742,8 +2776,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2755,8 +2789,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2774,8 +2808,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2787,8 +2821,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2806,8 +2840,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2819,8 +2853,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2838,8 +2872,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2851,8 +2885,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2870,8 +2904,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2883,8 +2917,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2902,8 +2936,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2915,8 +2949,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2934,8 +2968,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2947,8 +2981,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2966,8 +3000,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -2979,8 +3013,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -2998,8 +3032,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3011,8 +3045,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3030,8 +3064,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3043,8 +3077,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3062,8 +3096,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3075,8 +3109,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3094,8 +3128,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3107,8 +3141,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3126,8 +3160,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3139,8 +3173,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3158,8 +3192,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3171,8 +3205,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3190,8 +3224,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3203,8 +3237,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3222,8 +3256,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3235,8 +3269,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3254,8 +3288,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3267,8 +3301,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3286,8 +3320,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3299,8 +3333,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3318,8 +3352,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3331,8 +3365,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3350,8 +3384,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3363,8 +3397,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3382,8 +3416,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3395,8 +3429,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3414,8 +3448,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3427,8 +3461,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3446,8 +3480,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3459,8 +3493,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3478,8 +3512,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3491,8 +3525,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3510,8 +3544,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3523,8 +3557,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3542,8 +3576,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3555,8 +3589,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3574,8 +3608,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3587,8 +3621,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3606,8 +3640,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3619,8 +3653,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3638,8 +3672,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3651,8 +3685,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3670,8 +3704,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3683,8 +3717,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3702,8 +3736,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3715,8 +3749,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3734,8 +3768,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3747,8 +3781,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3766,8 +3800,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3779,8 +3813,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3798,8 +3832,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3811,8 +3845,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3830,8 +3864,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3843,8 +3877,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3862,8 +3896,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3875,8 +3909,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3894,8 +3928,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3907,8 +3941,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3926,8 +3960,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3939,8 +3973,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3958,8 +3992,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3971,8 +4005,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3990,8 +4024,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4003,8 +4037,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4022,8 +4056,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4035,8 +4069,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4054,8 +4088,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4067,8 +4101,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4086,8 +4120,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4099,8 +4133,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4118,8 +4152,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4131,8 +4165,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4150,8 +4184,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4163,8 +4197,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4182,8 +4216,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4195,8 +4229,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4214,8 +4248,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4227,8 +4261,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4246,8 +4280,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4259,8 +4293,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4278,8 +4312,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4291,8 +4325,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4310,8 +4344,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4323,8 +4357,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4342,8 +4376,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4355,8 +4389,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4374,8 +4408,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4387,8 +4421,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4406,8 +4440,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4419,8 +4453,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4438,8 +4472,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4451,8 +4485,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4470,8 +4504,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4483,8 +4517,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4502,8 +4536,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4515,8 +4549,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4534,8 +4568,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4547,8 +4581,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4566,8 +4600,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4579,8 +4613,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4598,8 +4632,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4611,8 +4645,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4630,8 +4664,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4643,8 +4677,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4662,8 +4696,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4675,8 +4709,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4694,8 +4728,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4707,8 +4741,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4726,8 +4760,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4739,8 +4773,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4758,8 +4792,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4771,8 +4805,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4790,8 +4824,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4803,8 +4837,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4822,8 +4856,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4835,8 +4869,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4854,8 +4888,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4867,8 +4901,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4886,8 +4920,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4899,8 +4933,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4918,8 +4952,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4931,8 +4965,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4950,8 +4984,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4963,8 +4997,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4982,8 +5016,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4995,8 +5029,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5014,8 +5048,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5027,8 +5061,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5046,8 +5080,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5059,8 +5093,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5078,8 +5112,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5091,8 +5125,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5110,8 +5144,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5123,8 +5157,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5142,8 +5176,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5155,8 +5189,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5174,8 +5208,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5187,8 +5221,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5206,8 +5240,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5219,8 +5253,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5238,8 +5272,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5251,8 +5285,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5270,8 +5304,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5283,8 +5317,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5302,8 +5336,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5315,8 +5349,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5334,8 +5368,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5347,8 +5381,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5366,8 +5400,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5379,8 +5413,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5398,8 +5432,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5411,8 +5445,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5430,8 +5464,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5443,8 +5477,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5462,8 +5496,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5475,8 +5509,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5494,8 +5528,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5507,8 +5541,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5526,8 +5560,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5539,8 +5573,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5558,8 +5592,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5571,8 +5605,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5590,8 +5624,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5603,8 +5637,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5622,8 +5656,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5635,8 +5669,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5654,8 +5688,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5667,8 +5701,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5686,8 +5720,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5699,8 +5733,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5718,8 +5752,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5731,8 +5765,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5750,8 +5784,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5763,8 +5797,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5782,8 +5816,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5795,8 +5829,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5814,8 +5848,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5827,8 +5861,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5846,8 +5880,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5859,8 +5893,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5878,8 +5912,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5891,8 +5925,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5910,8 +5944,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -5923,8 +5957,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -5942,8 +5976,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -5955,8 +5989,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -5974,8 +6008,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -5987,8 +6021,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6006,8 +6040,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6019,8 +6053,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6038,8 +6072,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6051,8 +6085,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6070,8 +6104,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6083,8 +6117,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6102,8 +6136,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6115,8 +6149,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6134,8 +6168,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6147,8 +6181,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6166,8 +6200,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6179,8 +6213,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6198,8 +6232,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -6211,8 +6245,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -6230,8 +6264,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 330, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 332, "column": 22 } }, @@ -6243,8 +6277,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 340, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 342, "column": 23 } } @@ -6255,15 +6289,28 @@ { "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-beta.7", + "usingModule": "ape@1.0.0-beta.11", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 109, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 110, "column": 23 }, "imports": {}, "devImports": [], "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-assimilate", + "target": "@assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, + "column": 23 + } + }, { "tagName": "symlink", "attributeValues": { @@ -6272,8 +6319,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6285,8 +6332,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6298,8 +6345,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6311,8 +6358,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6324,8 +6371,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6337,8 +6384,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6350,8 +6397,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6363,8 +6410,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6376,8 +6423,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6389,8 +6436,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6402,8 +6449,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6415,8 +6462,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6428,8 +6475,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6441,8 +6488,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6454,8 +6501,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6467,8 +6514,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6480,8 +6527,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6493,8 +6540,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6506,8 +6553,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6519,8 +6566,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6532,8 +6579,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6545,8 +6592,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6558,8 +6605,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6571,8 +6618,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6584,8 +6631,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6597,8 +6644,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6610,8 +6657,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6623,8 +6670,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6636,8 +6683,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6649,8 +6696,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6662,8 +6709,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6675,8 +6722,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6688,8 +6735,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6701,8 +6748,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6714,8 +6761,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6727,8 +6774,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6740,8 +6787,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6753,8 +6800,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6766,8 +6813,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6779,8 +6826,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6792,8 +6839,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6805,8 +6852,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6818,8 +6865,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6831,8 +6878,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6844,8 +6891,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6857,8 +6904,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6870,8 +6917,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6883,8 +6930,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6896,8 +6943,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6909,8 +6956,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6922,8 +6969,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6935,8 +6982,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6948,8 +6995,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6961,8 +7008,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6974,8 +7021,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -6987,8 +7034,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7000,8 +7047,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7013,8 +7060,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7026,8 +7073,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7039,8 +7086,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7052,8 +7099,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7065,8 +7112,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7078,8 +7125,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7091,8 +7138,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7104,8 +7151,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7117,8 +7164,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7130,8 +7177,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7143,8 +7190,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7156,8 +7203,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7169,8 +7216,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7182,8 +7229,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7195,8 +7242,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7208,8 +7255,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7221,8 +7268,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7234,8 +7281,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7247,8 +7294,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7260,8 +7307,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7273,8 +7320,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7286,8 +7333,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7299,8 +7346,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7312,8 +7359,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7325,8 +7372,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7338,8 +7385,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7351,8 +7398,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7364,8 +7411,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7377,8 +7424,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7390,8 +7437,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7403,8 +7450,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7416,8 +7463,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7429,8 +7476,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7442,8 +7489,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7455,8 +7502,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7468,8 +7515,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7481,8 +7528,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7494,8 +7541,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7507,8 +7554,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7520,8 +7567,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7533,8 +7580,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7546,8 +7593,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7559,8 +7606,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7572,8 +7619,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7585,8 +7632,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7598,8 +7645,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7611,8 +7658,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7624,8 +7671,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7637,8 +7684,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7650,8 +7697,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7663,8 +7710,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7676,8 +7723,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7689,8 +7736,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7702,8 +7749,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7715,8 +7762,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7728,8 +7775,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7741,8 +7788,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7754,8 +7801,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7767,8 +7814,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7780,8 +7827,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7793,8 +7840,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7806,8 +7853,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7819,8 +7866,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7832,8 +7879,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7845,8 +7892,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7858,8 +7905,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7871,8 +7918,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7884,8 +7931,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7897,8 +7944,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7910,8 +7957,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7923,8 +7970,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7936,8 +7983,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7949,8 +7996,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7962,8 +8009,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7975,8 +8022,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -7988,8 +8035,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8001,8 +8048,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8014,8 +8061,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8027,8 +8074,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8040,8 +8087,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8053,8 +8100,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8066,8 +8113,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8079,8 +8126,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8092,8 +8139,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8105,8 +8152,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8118,8 +8165,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8131,8 +8178,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8144,8 +8191,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8157,8 +8204,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8170,8 +8217,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8183,8 +8230,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8196,8 +8243,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8209,8 +8256,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8222,8 +8269,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8235,8 +8282,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8248,8 +8295,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8261,8 +8308,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8274,8 +8321,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8287,8 +8334,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8300,8 +8347,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8313,8 +8360,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8326,8 +8373,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8339,8 +8386,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8352,8 +8399,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8365,8 +8412,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8378,8 +8425,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -8391,8 +8438,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 344, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 346, "column": 23 } } @@ -8402,6 +8449,7 @@ } ], "deps": { + "platforms": "platforms@0.0.10", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", @@ -8411,12 +8459,12 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "ape~1.0.0-beta.7", + "name": "ape~1.0.0-beta.11", "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.7/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.11/downloads/src.tar.gz" ], - "integrity": "sha512-5xqM1Z2LFCw3iS7ME8nDunrkEEdITYjapBpasgIJ9+svfxcXOB6LQ/JSso0Aw6L7GFWyk4QqvYvSTb6FHz4+XA==", - "strip_prefix": "ape-v1.0.0-beta.7", + "integrity": "sha512-qGyXIPfEYHMAhe75UrvEMaFD9Rhvh2NQTAGKVKDpUwPBvctNhF31eSknLU7YoDTWPyuQILMo6xy5pWWQ4UHqLw==", + "strip_prefix": "ape-v1.0.0-beta.11", "remote_patches": {}, "remote_patch_strip": 0 } @@ -8549,7 +8597,7 @@ "rules_license": "rules_license@0.0.7", "rules_proto": "rules_proto@4.0.0", "rules_python": "rules_python@0.4.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "com_google_protobuf": "protobuf@3.19.6", "zlib": "zlib@1.3", "build_bazel_apple_support": "apple_support@1.5.0", @@ -8565,7 +8613,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_" } }, @@ -10813,7 +10861,7 @@ ], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -10957,7 +11005,7 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "io_bazel_stardoc": "stardoc@0.5.4", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -10980,14 +11028,32 @@ } } }, - "platforms@0.0.8": { + "platforms@0.0.10": { "name": "platforms", - "version": "0.0.8", - "key": "platforms@0.0.8", + "version": "0.0.10", + "key": "platforms@0.0.10", "repoName": "platforms", "executionPlatformsToRegister": [], "toolchainsToRegister": [], - "extensionUsages": [], + "extensionUsages": [ + { + "extensionBzlFile": "@platforms//host:extension.bzl", + "extensionName": "host_platform", + "usingModule": "platforms@0.0.10", + "location": { + "file": "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel", + "line": 9, + "column": 30 + }, + "imports": { + "host_platform": "host_platform" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], "deps": { "rules_license": "rules_license@0.0.7", "bazel_tools": "bazel_tools@_", @@ -10999,9 +11065,9 @@ "attributes": { "name": "platforms", "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz" + "https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz" ], - "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=", + "integrity": "sha256-IY7+juc20mo1cmY7N0olPAErcW2K8MB+hC6C8jigp+4=", "strip_prefix": "", "remote_patches": {}, "remote_patch_strip": 0 @@ -11064,7 +11130,7 @@ } ], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11163,7 +11229,7 @@ } ], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "rules_cc": "rules_cc@0.0.9", "bazel_skylib": "bazel_skylib@1.5.0", "rules_proto": "rules_proto@4.0.0", @@ -11346,7 +11412,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -11400,7 +11466,7 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11450,4860 +11516,5 @@ } } }, - "moduleExtensions": { - "//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "6wiUQ6BX4aB2BSQ9e9cYos695XB0nVMS1OPcDJidNi0=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "resolved-tar": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "toolchain_type": "@@//tar/toolchain/tar:type", - "name": "_main~_repo_rules~resolved-tar" - } - } - } - } - }, - "@@ape~1.0.0-beta.7//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "7dmOqqm4azSAaOhBklUWLfQ6Db4qFiDpOgYBZF3yvig=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "zig-0.11.0-arm64-darwin": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "ape~1.0.0-beta.7~_repo_rules~zig-0.11.0-arm64-darwin" - } - }, - "zig": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/select:repository.bzl", - "ruleClassName": "select", - "attributes": { - "map": { - "arm64-darwin": "@zig-0.11.0-arm64-darwin" - }, - "name": "ape~1.0.0-beta.7~_repo_rules~zig" - } - }, - "ape-m1.c": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "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.1/ape/ape-m1.c" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~ape-m1.c" - } - }, - "ape-arm64.macho": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/compile:repository.bzl", - "ruleClassName": "compile", - "attributes": { - "srcs": [ - "@@ape~1.0.0-beta.7~_repo_rules~ape-m1.c//:ape-m1.c" - ], - "output": "ape", - "zig": "@@ape~1.0.0-beta.7~_repo_rules~zig//:entrypoint", - "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.macho" - } - }, - "ape-arm64.elf": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-h3zL1GUkMGVCbLSjyrQ1GsrZGGSfhlZVa7YEiC7q0I8=", - "output": "ape", - "urls": [ - "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~1.0.0-beta.7~_repo_rules~ape-arm64.elf" - } - }, - "ape-x86_64.elf": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-fBz4sk4bbdatfaOBcEXVgq2hRrTW7AxqRb6oMOOmX00=", - "output": "ape", - "urls": [ - "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~1.0.0-beta.7~_repo_rules~ape-x86_64.elf" - } - }, - "ape-x86_64.macho": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-btvd3YJTsgZojeJJGIrf2OuFDpw9nxmEMleBS5NsWZg=", - "output": "ape", - "urls": [ - "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~1.0.0-beta.7~_repo_rules~ape-x86_64.macho" - } - }, - "ape.pe": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/pe:repository.bzl", - "ruleClassName": "pe", - "attributes": { - "name": "ape~1.0.0-beta.7~_repo_rules~ape.pe" - } - }, - "launcher": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/select:repository.bzl", - "ruleClassName": "select", - "attributes": { - "map": { - "arm64-linux": "@ape-arm64.elf", - "amd64-linux": "@ape-x86_64.elf", - "amd64-darwin": "@ape-x86_64.macho", - "arm64-darwin": "@ape-arm64.macho", - "windows": "@ape.pe" - }, - "name": "ape~1.0.0-beta.7~_repo_rules~launcher" - } - }, - "resolved-ape": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "toolchain_type": "@@ape~1.0.0-beta.7//ape/toolchain/ape:type", - "name": "ape~1.0.0-beta.7~_repo_rules~resolved-ape" - } - }, - "cosmos-awk": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-S8i3mKq7mEtBZzo1Uu679YqnAWzkikcVdf4VqEqI070=", - "output": "awk", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-awk" - } - }, - "awk": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-awk//:awk", - "name": "ape~1.0.0-beta.7~_repo_rules~awk" - } - }, - "cosmos-b2sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hybI849qLSwgx7YJkQn7jWLMnagPL2HjvrKm/piVuhs=", - "output": "b2sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum" - } - }, - "b2sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum//:b2sum", - "name": "ape~1.0.0-beta.7~_repo_rules~b2sum" - } - }, - "cosmos-base32": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-TZkpwZAqSQTHHcRwl88F8haL6d7vm8nzdB50IBU7Mlw=", - "output": "base32", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-base32" - } - }, - "base32": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base32//:base32", - "name": "ape~1.0.0-beta.7~_repo_rules~base32" - } - }, - "cosmos-base64": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-5yuKsVWZrZm/uaI23z8UBm4KmrNy+V2iqP/yNIAfl00=", - "output": "base64", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-base64" - } - }, - "base64": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base64//:base64", - "name": "ape~1.0.0-beta.7~_repo_rules~base64" - } - }, - "cosmos-basename": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-xKbtsOkcHIi9mW3aI1JGo9H3pqan8hBqfsPxoh3e32s=", - "output": "basename", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-basename" - } - }, - "basename": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basename//:basename", - "name": "ape~1.0.0-beta.7~_repo_rules~basename" - } - }, - "cosmos-basenc": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RWpNzGmO/BjqSz9l6DEdOhFX5qoo1iHDJR8sNiahPe0=", - "output": "basenc", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-basenc" - } - }, - "basenc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basenc//:basenc", - "name": "ape~1.0.0-beta.7~_repo_rules~basenc" - } - }, - "cosmos-bash": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-a5aWfQrsx8zogqy1WCJ/sYEaNlxBbsY9lZVf4VMYTT0=", - "output": "bash", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-bash" - } - }, - "bash": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bash//:bash", - "name": "ape~1.0.0-beta.7~_repo_rules~bash" - } - }, - "cosmos-berry": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-9ZJIEqpYwPi0OqU7N8BSAOci5yKcdv9cBnD5ZGzkj8g=", - "output": "berry", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-berry" - } - }, - "berry": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-berry//:berry", - "name": "ape~1.0.0-beta.7~_repo_rules~berry" - } - }, - "cosmos-brotli": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Tm3e9kratlJPUF8d/+fIGyjmeBjX7NAkYDyiL4ks2jM=", - "output": "brotli", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-brotli" - } - }, - "brotli": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-brotli//:brotli", - "name": "ape~1.0.0-beta.7~_repo_rules~brotli" - } - }, - "cosmos-bzip2": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-lqfcO/t/s5f19EUnnV/oijc+iBnvmyblMAEM7FrcRZU=", - "output": "bzip2", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2" - } - }, - "bzip2": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2//:bzip2", - "name": "ape~1.0.0-beta.7~_repo_rules~bzip2" - } - }, - "cosmos-cat": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-zn8YVGvKwuQoDg9YXAE+9nxYM4E8t004mwIyNrqVpbw=", - "output": "cat", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cat" - } - }, - "cat": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cat//:cat", - "name": "ape~1.0.0-beta.7~_repo_rules~cat" - } - }, - "cosmos-chcon": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-qoL4zarrnBVQ+V6+xYnH4XCv856fUS/RxwQuBUGRFks=", - "output": "chcon", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chcon" - } - }, - "chcon": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chcon//:chcon", - "name": "ape~1.0.0-beta.7~_repo_rules~chcon" - } - }, - "cosmos-chgrp": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-GoWZbn/c4+E+TQhqD6lIOMVWUDJnbp6Wk8SHU7zENoU=", - "output": "chgrp", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp" - } - }, - "chgrp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp//:chgrp", - "name": "ape~1.0.0-beta.7~_repo_rules~chgrp" - } - }, - "cosmos-chown": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-LkN2ONSleTXKvpz/dYlk4m9UJRuCztov3+DlOEodXDE=", - "output": "chown", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chown" - } - }, - "chown": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chown//:chown", - "name": "ape~1.0.0-beta.7~_repo_rules~chown" - } - }, - "cosmos-chroot": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-jZbYqT/TwIpw6BO9FfJ3GxvklpKE0mBBXiNuGSbtsns=", - "output": "chroot", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chroot" - } - }, - "chroot": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chroot//:chroot", - "name": "ape~1.0.0-beta.7~_repo_rules~chroot" - } - }, - "cosmos-cksum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hfAnWqmktIYXHEiTaKWQL/fDXK7bnHQONkRKtaMd5J4=", - "output": "cksum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cksum" - } - }, - "cksum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cksum//:cksum", - "name": "ape~1.0.0-beta.7~_repo_rules~cksum" - } - }, - "cosmos-clang-format": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", - "output": "clang-format", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format" - } - }, - "clang-format": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format//:clang-format", - "name": "ape~1.0.0-beta.7~_repo_rules~clang-format" - } - }, - "cosmos-cmp": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cmp" - } - }, - "cmp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cmp//:cmp", - "name": "ape~1.0.0-beta.7~_repo_rules~cmp" - } - }, - "cosmos-comm": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-uh4mLvzwY0QmCT32SRL/f0ubzXfszKpvb2ZtboQrNIA=", - "output": "comm", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-comm" - } - }, - "comm": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-comm//:comm", - "name": "ape~1.0.0-beta.7~_repo_rules~comm" - } - }, - "cosmos-cpuid": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wAGvPA8axzW+XJ5w861q7IV518W7WMrZ/tbZ0Z78t1E=", - "output": "cpuid", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid" - } - }, - "cpuid": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid//:cpuid", - "name": "ape~1.0.0-beta.7~_repo_rules~cpuid" - } - }, - "cosmos-csplit": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-nLz8hfRVZDGz/UVq1/Ge0j4Q06eSLgLxu4aRexwEelA=", - "output": "csplit", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-csplit" - } - }, - "csplit": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-csplit//:csplit", - "name": "ape~1.0.0-beta.7~_repo_rules~csplit" - } - }, - "cosmos-ctags": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-x/101oqxSvgRoQ9N9+sZkuC7/tV+zVnId4Jo4gX5PIU=", - "output": "ctags", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ctags" - } - }, - "ctags": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ctags//:ctags", - "name": "ape~1.0.0-beta.7~_repo_rules~ctags" - } - }, - "cosmos-curl": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-54mSqLkXfwMSRZtPa2w2T8XuvE12o9QxJRQYmOGn1YY=", - "output": "curl", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-curl" - } - }, - "curl": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-curl//:curl", - "name": "ape~1.0.0-beta.7~_repo_rules~curl" - } - }, - "cosmos-cut": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FDcHrxJ+CjkPOYFD/F7F9EOF93TKbU2/N7CHP8vte4I=", - "output": "cut", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cut" - } - }, - "cut": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cut//:cut", - "name": "ape~1.0.0-beta.7~_repo_rules~cut" - } - }, - "cosmos-dash": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-AMQZpQl5cfVZ/1vZAn/SnuSGC34CkfPMXA9tQixE/zM=", - "output": "dash", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dash" - } - }, - "dash": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dash//:dash", - "name": "ape~1.0.0-beta.7~_repo_rules~dash" - } - }, - "cosmos-datasette": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hUDSYI+lpEhVX6zhFnNHu/N3bNfDeWSJQjkAzcoYCjA=", - "output": "datasette", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-datasette" - } - }, - "datasette": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-datasette//:datasette", - "name": "ape~1.0.0-beta.7~_repo_rules~datasette" - } - }, - "cosmos-date": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-uNP3r6CkyURYW7vH5rR/FXMQpoBgiyW2sTn6qUEs0ao=", - "output": "date", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-date" - } - }, - "date": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-date//:date", - "name": "ape~1.0.0-beta.7~_repo_rules~date" - } - }, - "cosmos-df": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-VtOW2S2dzEAwP/5B9Qj4u/qZndNCo0lJrSqWX7Sd6vo=", - "output": "df", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-df" - } - }, - "df": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-df//:df", - "name": "ape~1.0.0-beta.7~_repo_rules~df" - } - }, - "cosmos-dir": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-oNxnS6F4pCNMedClbW/NFRRbP1XAwsdZpGJ2VsXug0g=", - "output": "dir", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dir" - } - }, - "dir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dir//:dir", - "name": "ape~1.0.0-beta.7~_repo_rules~dir" - } - }, - "cosmos-dircolors": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ASzE+h3h/0XBA4vrOyPSKptSE0tJEpbfFtMN1nDhGa4=", - "output": "dircolors", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors" - } - }, - "dircolors": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors//:dircolors", - "name": "ape~1.0.0-beta.7~_repo_rules~dircolors" - } - }, - "cosmos-dirname": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-EMAAvhNKylQI5YR1O3P1locWiIUpclMesgKAu9UWNec=", - "output": "dirname", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dirname" - } - }, - "dirname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dirname//:dirname", - "name": "ape~1.0.0-beta.7~_repo_rules~dirname" - } - }, - "cosmos-diff": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff" - } - }, - "diff": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff//:diff", - "name": "ape~1.0.0-beta.7~_repo_rules~diff" - } - }, - "cosmos-diff3": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff3" - } - }, - "diff3": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff3//:diff3", - "name": "ape~1.0.0-beta.7~_repo_rules~diff3" - } - }, - "cosmos-du": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-XeQC8BcRZjuA+BCb+JRyRe+6wN3m3iVWZ7BIBF7guvA=", - "output": "du", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-du" - } - }, - "du": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-du//:du", - "name": "ape~1.0.0-beta.7~_repo_rules~du" - } - }, - "cosmos-emacs": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-DLJvKJfmHsrzgD7083fWvp3RFiUMvs3lvWk0xLH92z8=", - "output": "emacs", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacs" - } - }, - "emacs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacs//:emacs", - "name": "ape~1.0.0-beta.7~_repo_rules~emacs" - } - }, - "cosmos-emacsclient": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-6hH6jn2pBX9VsoU4v3u3Xol4MR/6vskzIOwvOhMH5M4=", - "output": "emacsclient", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient" - } - }, - "emacsclient": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient//:emacsclient", - "name": "ape~1.0.0-beta.7~_repo_rules~emacsclient" - } - }, - "cosmos-env": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Lm8iE0YBdvYwn4RMAyqiLWbVxqaEf2iNWilY3PPAGN4=", - "output": "env", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/env", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/env" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-env" - } - }, - "env": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-env//:env", - "name": "ape~1.0.0-beta.7~_repo_rules~env" - } - }, - "cosmos-expand": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-/hCOZX9bhwc5SjWQ9GIWwbcPCozCUWUKa/iuDv/ih2c=", - "output": "expand", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/expand", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/expand" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-expand" - } - }, - "expand": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expand//:expand", - "name": "ape~1.0.0-beta.7~_repo_rules~expand" - } - }, - "cosmos-expr": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-31jw0oaJRgL3qHsBhGDc0TEuSNoAiBH8gyjzRzz87UE=", - "output": "expr", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-expr" - } - }, - "expr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expr//:expr", - "name": "ape~1.0.0-beta.7~_repo_rules~expr" - } - }, - "cosmos-factor": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-me2S4CN3G/KcERW/B86F9MbnvuQg4jaNPWoH4nUH7mk=", - "output": "factor", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-factor" - } - }, - "factor": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-factor//:factor", - "name": "ape~1.0.0-beta.7~_repo_rules~factor" - } - }, - "cosmos-false": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KuxblC3tmFtyDjUcdGIag/UVdOGhvxtvrJkRrP6qyl4=", - "output": "false", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-false" - } - }, - "false": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-false//:false", - "name": "ape~1.0.0-beta.7~_repo_rules~false" - } - }, - "cosmos-find": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-7h4OC/Lz/iD7WkTxmvmSZOflw/E6gTMssKSz68qPCFw=", - "output": "find", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-find" - } - }, - "find": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-find//:find", - "name": "ape~1.0.0-beta.7~_repo_rules~find" - } - }, - "cosmos-fmt": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-DB2vUqeSnUryfZj+qibUGKMs4Abcz6qzM3w6lawptsM=", - "output": "fmt", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-fmt" - } - }, - "fmt": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fmt//:fmt", - "name": "ape~1.0.0-beta.7~_repo_rules~fmt" - } - }, - "cosmos-fold": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-TdlGtv30nM28eoUXx9jjhAf7Zj834R0SHz0yfbcrWio=", - "output": "fold", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-fold" - } - }, - "fold": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fold//:fold", - "name": "ape~1.0.0-beta.7~_repo_rules~fold" - } - }, - "cosmos-gmake": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-3J/jjvnCUMTfEyRc5RsxmVJw0jpSwmmzrEFO/u2/pQ8=", - "output": "gmake", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-gmake" - } - }, - "gmake": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gmake//:gmake", - "name": "ape~1.0.0-beta.7~_repo_rules~gmake" - } - }, - "cosmos-greenbean": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-jZ4Oj9zhG/UUB2QmhMdDsx4fTdL8/0xvBCHOK/rGSys=", - "output": "greenbean", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean" - } - }, - "greenbean": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean//:greenbean", - "name": "ape~1.0.0-beta.7~_repo_rules~greenbean" - } - }, - "cosmos-grep": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-geISCmpxm4c2gwPnR+XjF47+j/mw2epm5qYEn5Vrvok=", - "output": "grep", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-grep" - } - }, - "grep": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-grep//:grep", - "name": "ape~1.0.0-beta.7~_repo_rules~grep" - } - }, - "cosmos-groups": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-64yeH5wPP7omE7VfLLH8HGWjyE7zgdzMF8oLpVz+5PY=", - "output": "groups", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-groups" - } - }, - "groups": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-groups//:groups", - "name": "ape~1.0.0-beta.7~_repo_rules~groups" - } - }, - "cosmos-head": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Lr5xxWMwjZjQUh2ODx/zDzTO3fx8Yw5694p1t7zG0AU=", - "output": "head", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-head" - } - }, - "head": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-head//:head", - "name": "ape~1.0.0-beta.7~_repo_rules~head" - } - }, - "cosmos-id": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-8JUzzmsMkhu2sc9w2I/nb8recinaAamgGe7JEQh98kI=", - "output": "id", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-id" - } - }, - "id": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-id//:id", - "name": "ape~1.0.0-beta.7~_repo_rules~id" - } - }, - "cosmos-install": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Iu1sv7WjlREuCQp3mgDxFCRf0byn5beC8JmHjWodb/M=", - "output": "install", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-install" - } - }, - "install": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-install//:install", - "name": "ape~1.0.0-beta.7~_repo_rules~install" - } - }, - "cosmos-join": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-eb7PzIfyziQZ8LeauwpuES+YKemu52jmt0KgJ3pAzks=", - "output": "join", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-join" - } - }, - "join": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-join//:join", - "name": "ape~1.0.0-beta.7~_repo_rules~join" - } - }, - "cosmos-kill": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-l4b6fMDZR4yHnP1ZpRVL2KfCOgbKDHZkUzo8wlZkMUA=", - "output": "kill", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-kill" - } - }, - "kill": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-kill//:kill", - "name": "ape~1.0.0-beta.7~_repo_rules~kill" - } - }, - "cosmos-less": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-pysLPyq9zi5gTcj+UTu41PgZsRnUAdYzATIUMiMEsQw=", - "output": "less", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-less" - } - }, - "less": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-less//:less", - "name": "ape~1.0.0-beta.7~_repo_rules~less" - } - }, - "cosmos-life": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ui3H0RF4G0JHV9kbDIy5qviR+mKEN//98jHfznq8tO4=", - "output": "life", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-life" - } - }, - "life": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-life//:life", - "name": "ape~1.0.0-beta.7~_repo_rules~life" - } - }, - "cosmos-link": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-HFtwRXzP/Z+pJTM/Yz7+AMXumO46HmvGGfsHE9vUox8=", - "output": "link", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-link" - } - }, - "link": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-link//:link", - "name": "ape~1.0.0-beta.7~_repo_rules~link" - } - }, - "cosmos-links": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-EEOqXakHybI51BOxnBCHwLeYlwF8iSSx8p3Gxgcz0Qc=", - "output": "links", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-links" - } - }, - "links": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-links//:links", - "name": "ape~1.0.0-beta.7~_repo_rules~links" - } - }, - "cosmos-ln": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FtXuVwYLaC/DT3LPF8coiSMCEOmVVorVzqBYDDRtjyg=", - "output": "ln", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ln" - } - }, - "ln": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ln//:ln", - "name": "ape~1.0.0-beta.7~_repo_rules~ln" - } - }, - "cosmos-locate": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZQUPf3kqvmik5citQP+wJiHeOJWrcX4TIDLytEuRyyo=", - "output": "locate", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-locate" - } - }, - "locate": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-locate//:locate", - "name": "ape~1.0.0-beta.7~_repo_rules~locate" - } - }, - "cosmos-logname": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-IMIHQygOJnWQ2pPMqcFZwKURdNAZM5onxESxBcLM7kM=", - "output": "logname", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-logname" - } - }, - "logname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-logname//:logname", - "name": "ape~1.0.0-beta.7~_repo_rules~logname" - } - }, - "cosmos-ls": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Fno6FUKMAA/8Uk2rsAauhr/b5uqeZcs2oAy+s8uHx3w=", - "output": "ls", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ls" - } - }, - "ls": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ls//:ls", - "name": "ape~1.0.0-beta.7~_repo_rules~ls" - } - }, - "cosmos-lua": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-LRYoHAQg+M8kQKtX6gCjSvD4b9puEbTK2t4z6hyVW8I=", - "output": "lua", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-lua" - } - }, - "lua": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lua//:lua", - "name": "ape~1.0.0-beta.7~_repo_rules~lua" - } - }, - "cosmos-lz4": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ymvYKyvlv31C6tdLYCVFfhaqvmZ5J37RDbxeGx/6rrI=", - "output": "lz4", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-lz4" - } - }, - "lz4": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lz4//:lz4", - "name": "ape~1.0.0-beta.7~_repo_rules~lz4" - } - }, - "cosmos-make": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-98atSW2fzibEFrcpFy77A7IvnW0TtMEbeMKxicWb8FM=", - "output": "make", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-make" - } - }, - "make": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-make//:make", - "name": "ape~1.0.0-beta.7~_repo_rules~make" - } - }, - "cosmos-md5sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-1lNBqdyji+ttmR+4sIS6DXcJs6d+67gF0+Q3bUqNaIs=", - "output": "md5sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum" - } - }, - "md5sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum//:md5sum", - "name": "ape~1.0.0-beta.7~_repo_rules~md5sum" - } - }, - "cosmos-mkfifo": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Z/dfvumWh0v8wr0l8ByZztaztwMkfekaOXNVnFLVxEk=", - "output": "mkfifo", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo" - } - }, - "mkfifo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo//:mkfifo", - "name": "ape~1.0.0-beta.7~_repo_rules~mkfifo" - } - }, - "cosmos-mknod": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-C7rFuRsgVIA63trDx8rTpFGJztXbNAPMtNuqbzGeqdw=", - "output": "mknod", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mknod" - } - }, - "mknod": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mknod//:mknod", - "name": "ape~1.0.0-beta.7~_repo_rules~mknod" - } - }, - "cosmos-mktemp": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-GihMOG1RDJHUqphmOZPwkfEaVC4jC/X0kCRskpH09u8=", - "output": "mktemp", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp" - } - }, - "mktemp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp//:mktemp", - "name": "ape~1.0.0-beta.7~_repo_rules~mktemp" - } - }, - "cosmos-mktemper": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-WreRwEGUss++hwxb+3Cttu72Voe4yi4E7Xyr9soCXps=", - "output": "mktemper", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper" - } - }, - "mktemper": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper//:mktemper", - "name": "ape~1.0.0-beta.7~_repo_rules~mktemper" - } - }, - "cosmos-nano": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-trc2X1Jg1JTviP+nbelsQvtMmgrh5gtF7fEijdDvkZY=", - "output": "nano", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nano" - } - }, - "nano": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nano//:nano", - "name": "ape~1.0.0-beta.7~_repo_rules~nano" - } - }, - "cosmos-nesemu1": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-JOqaQ2aNcGoiB3YdX2zLCGGD8kFr4Glv3PLPVej/nwc=", - "output": "nesemu1", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1" - } - }, - "nesemu1": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1//:nesemu1", - "name": "ape~1.0.0-beta.7~_repo_rules~nesemu1" - } - }, - "cosmos-nice": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-+fHYlw1WIDX4kCzoTDYy5tqI/BdetF7WlxkJCWpJlrM=", - "output": "nice", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nice" - } - }, - "nice": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nice//:nice", - "name": "ape~1.0.0-beta.7~_repo_rules~nice" - } - }, - "cosmos-ninja": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-MdTFCVaBaiknlbcAXEshhc6P+QDEmNLH6NOt1bGbbu4=", - "output": "ninja", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ninja" - } - }, - "ninja": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ninja//:ninja", - "name": "ape~1.0.0-beta.7~_repo_rules~ninja" - } - }, - "cosmos-nl": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-y5a/fgKdjraA7e+RUKZSh6BIQPviZsxu4720/yPzGUI=", - "output": "nl", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nl" - } - }, - "nl": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nl//:nl", - "name": "ape~1.0.0-beta.7~_repo_rules~nl" - } - }, - "cosmos-nohup": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-sTiFAUHIl+IF6N8wChBjYZj3NJg4vN461JPY9T1peo8=", - "output": "nohup", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nohup" - } - }, - "nohup": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nohup//:nohup", - "name": "ape~1.0.0-beta.7~_repo_rules~nohup" - } - }, - "cosmos-nproc": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Dydu9oowmpkajx9rq006f5I4Z0BhP6EJv+S0xEjTRcU=", - "output": "nproc", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nproc" - } - }, - "nproc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nproc//:nproc", - "name": "ape~1.0.0-beta.7~_repo_rules~nproc" - } - }, - "cosmos-numfmt": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-7VTO7GYItNhcoqC7qixlY4dK7l0TgRFRBivCJjbls5Y=", - "output": "numfmt", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt" - } - }, - "numfmt": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt//:numfmt", - "name": "ape~1.0.0-beta.7~_repo_rules~numfmt" - } - }, - "cosmos-od": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RV+nBJ885wCxqLW8+UOEm3rQopQQhQ/rHuHJYrhZiYA=", - "output": "od", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-od" - } - }, - "od": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-od//:od", - "name": "ape~1.0.0-beta.7~_repo_rules~od" - } - }, - "cosmos-paste": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-d37G1PptmT8DvFYb0A51tHRAONW3k2xq4y8pFnbR/FA=", - "output": "paste", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-paste" - } - }, - "paste": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-paste//:paste", - "name": "ape~1.0.0-beta.7~_repo_rules~paste" - } - }, - "cosmos-patch": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-dUVoOS8qaaVAsTlHp5DnupNPB02ZBfVBYUNoFEQVfY4=", - "output": "patch", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/patch", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/patch" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-patch" - } - }, - "patch": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-patch//:patch", - "name": "ape~1.0.0-beta.7~_repo_rules~patch" - } - }, - "cosmos-pathchk": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-qjcLXvmgW3bbARJqpE5PF1LdaVrvnQZVsmBFgTM5/JY=", - "output": "pathchk", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk" - } - }, - "pathchk": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk//:pathchk", - "name": "ape~1.0.0-beta.7~_repo_rules~pathchk" - } - }, - "cosmos-pinky": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-cCtYw56s7y1pYOCm/PNgp1Y+pgf8K0UjVVsikUIoJQE=", - "output": "pinky", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pinky" - } - }, - "pinky": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pinky//:pinky", - "name": "ape~1.0.0-beta.7~_repo_rules~pinky" - } - }, - "cosmos-pledge": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-eaFRVXB2hGp2o9lYNSP+bb+sxOQ04bqCU2mDEmSIRN0=", - "output": "pledge", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pledge" - } - }, - "pledge": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pledge//:pledge", - "name": "ape~1.0.0-beta.7~_repo_rules~pledge" - } - }, - "cosmos-pr": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Cd292alJ/36s1BOyfPj+SDDCuMGsgduzsjHspANOguU=", - "output": "pr", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pr" - } - }, - "pr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pr//:pr", - "name": "ape~1.0.0-beta.7~_repo_rules~pr" - } - }, - "cosmos-printenv": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-sCxezf/rJ5S2Yw9ELAh8TD0MCUKhTjdwvLfHBVHUiyc=", - "output": "printenv", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-printenv" - } - }, - "printenv": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printenv//:printenv", - "name": "ape~1.0.0-beta.7~_repo_rules~printenv" - } - }, - "cosmos-printimage": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Q6HlaWrVneltekJ6JEceoU+yFzN9o9xpkI4UVwSXFrE=", - "output": "printimage", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-printimage" - } - }, - "printimage": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printimage//:printimage", - "name": "ape~1.0.0-beta.7~_repo_rules~printimage" - } - }, - "cosmos-ptx": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Hv3T2mhutoeK16lpWmZ9f1pbKnJfu1GGc4nCiwBwJ4Q=", - "output": "ptx", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ptx" - } - }, - "ptx": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ptx//:ptx", - "name": "ape~1.0.0-beta.7~_repo_rules~ptx" - } - }, - "cosmos-pwd": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-beUdC7B+HkPJsGjf/isqDL3QQ1gwypLBf32EC2tKa5g=", - "output": "pwd", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pwd" - } - }, - "pwd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pwd//:pwd", - "name": "ape~1.0.0-beta.7~_repo_rules~pwd" - } - }, - "cosmos-pypack1": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-492wiVHg7chVDxUrir3pOrY1OZ/2h8uKBwfD4gtLJuM=", - "output": "pypack1", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1" - } - }, - "pypack1": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1//:pypack1", - "name": "ape~1.0.0-beta.7~_repo_rules~pypack1" - } - }, - "cosmos-python": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-CuebA8IWxuoYr9HjVgyMLqf0kx23/OGIcS/tAsvPm98=", - "output": "python", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-python" - } - }, - "python": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-python//:python", - "name": "ape~1.0.0-beta.7~_repo_rules~python" - } - }, - "cosmos-qjs": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-dgblh0J7T6VumjgCrL0PPJAUIzrqGFw9oqoYSO+g39o=", - "output": "qjs", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-qjs" - } - }, - "qjs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-qjs//:qjs", - "name": "ape~1.0.0-beta.7~_repo_rules~qjs" - } - }, - "cosmos-readlink": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-n/FcF1jTFHmxvvh0UZeUbJOzse0mCIYEi7nFM0Wb2mg=", - "output": "readlink", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-readlink" - } - }, - "readlink": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-readlink//:readlink", - "name": "ape~1.0.0-beta.7~_repo_rules~readlink" - } - }, - "cosmos-realpath": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-0SUHEaSMliLf0BRdXaEAUGbwAAKXEV8M7f/xnBmqPPE=", - "output": "realpath", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-realpath" - } - }, - "realpath": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-realpath//:realpath", - "name": "ape~1.0.0-beta.7~_repo_rules~realpath" - } - }, - "cosmos-redbean": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-b6+KyGmVKmo6iiSUuhRrkIMQ9Mnr8ZqZR64rxtg4BBE=", - "output": "redbean", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-redbean" - } - }, - "redbean": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-redbean//:redbean", - "name": "ape~1.0.0-beta.7~_repo_rules~redbean" - } - }, - "cosmos-rmdir": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-4yRCV2b4p4im2dCQka0gp7qbdbG0d5OmILbAErTEsF0=", - "output": "rmdir", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir" - } - }, - "rmdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir//:rmdir", - "name": "ape~1.0.0-beta.7~_repo_rules~rmdir" - } - }, - "cosmos-rsync": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-IpC+6WKlj7EqkYxNXXDdO7IaF1/jTItBvlSKr0MdNIk=", - "output": "rsync", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-rsync" - } - }, - "rsync": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rsync//:rsync", - "name": "ape~1.0.0-beta.7~_repo_rules~rsync" - } - }, - "cosmos-runcon": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-y4OAxP6BQPy2+Rk4qFtStsBtiwOlZLlr30Un6Tt8B1k=", - "output": "runcon", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-runcon" - } - }, - "runcon": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-runcon//:runcon", - "name": "ape~1.0.0-beta.7~_repo_rules~runcon" - } - }, - "cosmos-script": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-He3EhRTNYIFHfDShoR69EPZW7USl/7gSM1ZB0uk+ie4=", - "output": "script", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-script" - } - }, - "script": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-script//:script", - "name": "ape~1.0.0-beta.7~_repo_rules~script" - } - }, - "cosmos-sdiff": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-V8rMT2LlnNJ5nQDA+HRVtYBWeoHFCko3lSoyJMo/UTE=", - "output": "sdiff", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sdiff", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sdiff" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff" - } - }, - "sdiff": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff//:sdiff", - "name": "ape~1.0.0-beta.7~_repo_rules~sdiff" - } - }, - "cosmos-sed": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-7z5mtxxjLL9ebC4V1cOpPjzArSxs1cIEsKizH4WPt3E=", - "output": "sed", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sed" - } - }, - "sed": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sed//:sed", - "name": "ape~1.0.0-beta.7~_repo_rules~sed" - } - }, - "cosmos-seq": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-OVOPZyBJJ9rcf1fnIU7ZvJuVTXN89cfXMGYGU1Es5Lo=", - "output": "seq", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-seq" - } - }, - "seq": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-seq//:seq", - "name": "ape~1.0.0-beta.7~_repo_rules~seq" - } - }, - "cosmos-sha1sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-2cL2GKl26qqr+FB3mKjhFPaIzPXCzxBiMfPOBYulFp0=", - "output": "sha1sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum" - } - }, - "sha1sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum//:sha1sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha1sum" - } - }, - "cosmos-sha224sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Dk9BKP17F/la+gPizCvGjtTqa6/tZT0gTrp1vrKInbo=", - "output": "sha224sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum" - } - }, - "sha224sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum//:sha224sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha224sum" - } - }, - "cosmos-sha256sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-WIplUCNmB7rMDb3/LvrqwoIHaNFw29Etvu6ivX2kCgE=", - "output": "sha256sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum" - } - }, - "sha256sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum//:sha256sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha256sum" - } - }, - "cosmos-sha384sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-nLx1jTqjwSnhWO6eK+heIWHuterKu3B04nYkrp9Shrk=", - "output": "sha384sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum" - } - }, - "sha384sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum//:sha384sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha384sum" - } - }, - "cosmos-sha512sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-y8UewGoBGDMfq2wKHFijVN+NtWKLWZDPOAVQBIA7mSA=", - "output": "sha512sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum" - } - }, - "sha512sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum//:sha512sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha512sum" - } - }, - "cosmos-shred": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-i8AEctRrGsvRs8Ly7XmK+XpgiZeQVVjIhQ7ie/Yy8yw=", - "output": "shred", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-shred" - } - }, - "shred": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shred//:shred", - "name": "ape~1.0.0-beta.7~_repo_rules~shred" - } - }, - "cosmos-shuf": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-WIdP7u66G/XFPDgyCpBihZBgijdeinfBDjARp1K8QXk=", - "output": "shuf", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-shuf" - } - }, - "shuf": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shuf//:shuf", - "name": "ape~1.0.0-beta.7~_repo_rules~shuf" - } - }, - "cosmos-sleep": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-gtC/7PR5VvzgxL4FwBJ6VO6b0DN7uBYUc8oQcMeKHWY=", - "output": "sleep", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sleep" - } - }, - "sleep": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sleep//:sleep", - "name": "ape~1.0.0-beta.7~_repo_rules~sleep" - } - }, - "cosmos-sort": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-nz0/ivLwTYtnvl4Xpl456rDfRickgpukdzdPFQy7Bu8=", - "output": "sort", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sort" - } - }, - "sort": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sort//:sort", - "name": "ape~1.0.0-beta.7~_repo_rules~sort" - } - }, - "cosmos-split": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-LKP1sD1cxx+lTlkcxXX2Ew1w3ywOeIoUgnLbZ8ase88=", - "output": "split", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-split" - } - }, - "split": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-split//:split", - "name": "ape~1.0.0-beta.7~_repo_rules~split" - } - }, - "cosmos-sqlite3": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-MMV+VsI6iwk1U5gATzJEfKqFTRLcNjE6r0TSAmT/3O8=", - "output": "sqlite3", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3" - } - }, - "sqlite3": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3//:sqlite3", - "name": "ape~1.0.0-beta.7~_repo_rules~sqlite3" - } - }, - "cosmos-stat": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-VX1GgQICdH2+F5mmYc4WI7G4OT5FFI+Zy3fRw45aypU=", - "output": "stat", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-stat" - } - }, - "stat": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stat//:stat", - "name": "ape~1.0.0-beta.7~_repo_rules~stat" - } - }, - "cosmos-stty": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-pBDYJV6K2WuiZTqTkHusvezMBwuf9WeBKOYA/CVyuUI=", - "output": "stty", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-stty" - } - }, - "stty": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stty//:stty", - "name": "ape~1.0.0-beta.7~_repo_rules~stty" - } - }, - "cosmos-sum": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-V4E8YCCny/DfQ6vaSupDsQpEF8eF265jIVKiffjExD8=", - "output": "sum", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sum" - } - }, - "sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sum//:sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sum" - } - }, - "cosmos-sync": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-92eEiTPpnGEmb1ECuvSXMrAjY+mv/DPP7SMEokOIWNs=", - "output": "sync", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sync" - } - }, - "sync": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sync//:sync", - "name": "ape~1.0.0-beta.7~_repo_rules~sync" - } - }, - "cosmos-tac": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wCJO+G4bdaTYMzOhZK0CqJbb1fEOmUTAgUrs/yKUi1c=", - "output": "tac", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tac" - } - }, - "tac": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tac//:tac", - "name": "ape~1.0.0-beta.7~_repo_rules~tac" - } - }, - "cosmos-tail": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-25wCKN+CWbZI7/zvmviGlkz4MN6R+mhScVo+BonuDy0=", - "output": "tail", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tail" - } - }, - "tail": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tail//:tail", - "name": "ape~1.0.0-beta.7~_repo_rules~tail" - } - }, - "cosmos-tar": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-veeG74pMzsCwry2oKhbXtrODNLikp7S0Wv98vaAgTlE=", - "output": "tar", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tar" - } - }, - "tar": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tar//:tar", - "name": "ape~1.0.0-beta.7~_repo_rules~tar" - } - }, - "cosmos-tee": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-9nv7tmm8AZfZEIflRNwZz01qDR32aMkbAfhBQTxSgZs=", - "output": "tee", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tee" - } - }, - "tee": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tee//:tee", - "name": "ape~1.0.0-beta.7~_repo_rules~tee" - } - }, - "cosmos-test": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-njjQ967LtdtyVIr2LHLwNZcDjCh1ehqjf4vd4qs1xOY=", - "output": "test", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-test" - } - }, - "test": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-test//:test", - "name": "ape~1.0.0-beta.7~_repo_rules~test" - } - }, - "cosmos-tidy": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-lDaweZcW7rqo3azvmyGRNoIFwH6QfBX9hTtV5XgZMkc=", - "output": "tidy", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tidy" - } - }, - "tidy": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tidy//:tidy", - "name": "ape~1.0.0-beta.7~_repo_rules~tidy" - } - }, - "cosmos-timeout": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-/05So3XYe6Q1ZaLlg3CkexkMWeePhlCnfiN3FWj40q8=", - "output": "timeout", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-timeout" - } - }, - "timeout": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-timeout//:timeout", - "name": "ape~1.0.0-beta.7~_repo_rules~timeout" - } - }, - "cosmos-tmux": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-8bdRHrTHAxbBe3jxvDWasMBTt9B/z/I25PZ/7BX8GlI=", - "output": "tmux", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tmux" - } - }, - "tmux": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tmux//:tmux", - "name": "ape~1.0.0-beta.7~_repo_rules~tmux" - } - }, - "cosmos-touch": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-zhFuIvzfkzMi3FTIOumqd4GtGEVJpP/wBeU7/homOPI=", - "output": "touch", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-touch" - } - }, - "touch": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-touch//:touch", - "name": "ape~1.0.0-beta.7~_repo_rules~touch" - } - }, - "cosmos-tr": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-IiVcClTzSTp1JmNOHSlcIayZvNHbVY42DnAE8/0Qesc=", - "output": "tr", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tr" - } - }, - "tr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tr//:tr", - "name": "ape~1.0.0-beta.7~_repo_rules~tr" - } - }, - "cosmos-tree": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-cQ8mhq2xdF49vJUc7FloZUswVn72LJDTgxqtRoKCsiw=", - "output": "tree", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tree" - } - }, - "tree": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tree//:tree", - "name": "ape~1.0.0-beta.7~_repo_rules~tree" - } - }, - "cosmos-true": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hYaiwy4ndHtQVXkue5IZqX6eGTEIG5hF9dFiJNwy0hE=", - "output": "true", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-true" - } - }, - "true": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-true//:true", - "name": "ape~1.0.0-beta.7~_repo_rules~true" - } - }, - "cosmos-truncate": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-WBM53lBcudr5o7aZXSFtGMAtTDOiTO5mzJXu93LKD30=", - "output": "truncate", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-truncate" - } - }, - "truncate": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-truncate//:truncate", - "name": "ape~1.0.0-beta.7~_repo_rules~truncate" - } - }, - "cosmos-tsort": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-UpSUFlDED5YslxGn5tffiVOo+wXCkrHIcxn01I4h15s=", - "output": "tsort", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tsort" - } - }, - "tsort": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tsort//:tsort", - "name": "ape~1.0.0-beta.7~_repo_rules~tsort" - } - }, - "cosmos-tty": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-yzZVpirempT1e3VfLqW/wh73Wg/MO9liJDJLRFqzOmE=", - "output": "tty", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tty" - } - }, - "tty": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tty//:tty", - "name": "ape~1.0.0-beta.7~_repo_rules~tty" - } - }, - "cosmos-ttyinfo": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-80TSpREUXO5RJzkGhTYbDL1r31/JdiQ/9bojc0SJL5w=", - "output": "ttyinfo", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo" - } - }, - "ttyinfo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo//:ttyinfo", - "name": "ape~1.0.0-beta.7~_repo_rules~ttyinfo" - } - }, - "cosmos-unbourne": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-nXUhnAnJZE2ibUTpzuPRuo3ZStSR5YsizSyzPvleEEg=", - "output": "unbourne", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne" - } - }, - "unbourne": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne//:unbourne", - "name": "ape~1.0.0-beta.7~_repo_rules~unbourne" - } - }, - "cosmos-unexpand": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-SyirSgmXz8cG1TAs5tZHbTIUEup4TobeFXKHUn8g1d0=", - "output": "unexpand", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand" - } - }, - "unexpand": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand//:unexpand", - "name": "ape~1.0.0-beta.7~_repo_rules~unexpand" - } - }, - "cosmos-uniq": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-bRyARZw39jAZXgyGVm63r2V7r+xT3L4d90kAYVlDAZY=", - "output": "uniq", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-uniq" - } - }, - "uniq": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uniq//:uniq", - "name": "ape~1.0.0-beta.7~_repo_rules~uniq" - } - }, - "cosmos-unlink": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-W4J4XLYs4yyT+7872Fv8RbOYtAlN62r4fXU83EXYZE0=", - "output": "unlink", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unlink" - } - }, - "unlink": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unlink//:unlink", - "name": "ape~1.0.0-beta.7~_repo_rules~unlink" - } - }, - "cosmos-unzip": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-QDT5UL43QhBK1pdJvCJdpyTMkxWQPD57wAkCziGcYP4=", - "output": "unzip", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unzip" - } - }, - "unzip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unzip//:unzip", - "name": "ape~1.0.0-beta.7~_repo_rules~unzip" - } - }, - "cosmos-uptime": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-faDcCqiIAUWbsKqZdtVDIRgvV5NCmEGT8qxMzR6lGOg=", - "output": "uptime", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-uptime" - } - }, - "uptime": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uptime//:uptime", - "name": "ape~1.0.0-beta.7~_repo_rules~uptime" - } - }, - "cosmos-users": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-isx4kM5na0c1MAcDdCcTnEIVB1HBCFKy757f47UD4tA=", - "output": "users", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-users" - } - }, - "users": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-users//:users", - "name": "ape~1.0.0-beta.7~_repo_rules~users" - } - }, - "cosmos-vdir": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-fQcjUl1QVmkQ4oyDkiKx/y2V+r5BDMU1oFf3w/l+tmc=", - "output": "vdir", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-vdir" - } - }, - "vdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vdir//:vdir", - "name": "ape~1.0.0-beta.7~_repo_rules~vdir" - } - }, - "cosmos-verynice": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-S5D4PmAPPZ1WmQZmCAWFuIt3XdUHQoL9++LV7VTYtvI=", - "output": "verynice", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-verynice" - } - }, - "verynice": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-verynice//:verynice", - "name": "ape~1.0.0-beta.7~_repo_rules~verynice" - } - }, - "cosmos-vim": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-onKJ/dqER14qtN3DMg7U0kU9EE1qvy+d4NyDl27tdUY=", - "output": "vim", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-vim" - } - }, - "vim": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vim//:vim", - "name": "ape~1.0.0-beta.7~_repo_rules~vim" - } - }, - "cosmos-wall": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Fx/k6dM6iCdaKuC56Q2QoxhMcC0LaHacZRfT+EWTHHA=", - "output": "wall", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wall" - } - }, - "wall": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wall//:wall", - "name": "ape~1.0.0-beta.7~_repo_rules~wall" - } - }, - "cosmos-wc": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-XRpXEGIZ/9Ow5IrHP+dbo5dc1hHqKZ1ewqJLM1CX9bg=", - "output": "wc", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wc" - } - }, - "wc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wc//:wc", - "name": "ape~1.0.0-beta.7~_repo_rules~wc" - } - }, - "cosmos-wget": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-CHZFKvpbmc5AmpkazKk0H0MeYE8wTl7aANjbU9NKDb0=", - "output": "wget", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wget" - } - }, - "wget": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wget//:wget", - "name": "ape~1.0.0-beta.7~_repo_rules~wget" - } - }, - "cosmos-who": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-W+CBIPsR2NBc6xXbom6zyzNCvHKmE+py/iGlX5ewNok=", - "output": "who", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-who" - } - }, - "who": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-who//:who", - "name": "ape~1.0.0-beta.7~_repo_rules~who" - } - }, - "cosmos-whoami": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-yjAXVvBgVSkLRpNve2AC9srTCSdieNLjh63wFpgxM88=", - "output": "whoami", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-whoami" - } - }, - "whoami": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-whoami//:whoami", - "name": "ape~1.0.0-beta.7~_repo_rules~whoami" - } - }, - "cosmos-xargs": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-A34zn2hiDh2xMdPY82s1ghm/xzDUEXqxy6IVqOJv9vY=", - "output": "xargs", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xargs" - } - }, - "xargs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xargs//:xargs", - "name": "ape~1.0.0-beta.7~_repo_rules~xargs" - } - }, - "cosmos-xz": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-84VVLEvkMFVKsNTKX8IZ90XAqebHofJ4bsy3J3f+Xe0=", - "output": "xz", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xz" - } - }, - "xz": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xz//:xz", - "name": "ape~1.0.0-beta.7~_repo_rules~xz" - } - }, - "cosmos-yes": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-J+N2zXEIyM9SF5Xqmpye6hISJi40Xj8343AQUL9jOiI=", - "output": "yes", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-yes" - } - }, - "yes": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-yes//:yes", - "name": "ape~1.0.0-beta.7~_repo_rules~yes" - } - }, - "cosmos-zip": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hxobwz7sl7w+NmS45mBoFd0sVSQ3haPeoPW5S7WBUN8=", - "output": "zip", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zip" - } - }, - "zip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zip//:zip", - "name": "ape~1.0.0-beta.7~_repo_rules~zip" - } - }, - "cosmos-zsh": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-zYH33XZzUvk6v5DiLKe5lKTKx0IsRW7zJWIeQmhM0f4=", - "output": "zsh", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zsh" - } - }, - "zsh": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zsh//:zsh", - "name": "ape~1.0.0-beta.7~_repo_rules~zsh" - } - }, - "cosmos-zstd": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-UQRCbSiHGWmBr2qsbnsCGQjIyhZG2ilfx9Iyxv6KbzQ=", - "output": "zstd", - "urls": [ - "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zstd" - } - }, - "zstd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zstd//:zstd", - "name": "ape~1.0.0-beta.7~_repo_rules~zstd" - } - }, - "cosmos-chmod": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", - "output": "chmod", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chmod" - } - }, - "chmod": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chmod//:chmod", - "name": "ape~1.0.0-beta.7~_repo_rules~chmod" - } - }, - "cosmos-cp": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", - "output": "cp", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cp" - } - }, - "cp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cp//:cp", - "name": "ape~1.0.0-beta.7~_repo_rules~cp" - } - }, - "cosmos-dd": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", - "output": "dd", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dd" - } - }, - "dd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dd//:dd", - "name": "ape~1.0.0-beta.7~_repo_rules~dd" - } - }, - "cosmos-echo": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", - "output": "echo", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-echo" - } - }, - "echo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-echo//:echo", - "name": "ape~1.0.0-beta.7~_repo_rules~echo" - } - }, - "cosmos-gzip": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", - "output": "gzip", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gzip" - } - }, - "gzip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gzip//:gzip", - "name": "ape~1.0.0-beta.7~_repo_rules~gzip" - } - }, - "cosmos-mkdir": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", - "output": "mkdir", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir" - } - }, - "mkdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir//:mkdir", - "name": "ape~1.0.0-beta.7~_repo_rules~mkdir" - } - }, - "cosmos-mv": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", - "output": "mv", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mv" - } - }, - "mv": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mv//:mv", - "name": "ape~1.0.0-beta.7~_repo_rules~mv" - } - }, - "cosmos-printf": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", - "output": "printf", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printf" - } - }, - "printf": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printf//:printf", - "name": "ape~1.0.0-beta.7~_repo_rules~printf" - } - }, - "cosmos-rm": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", - "output": "rm", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rm" - } - }, - "rm": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rm//:rm", - "name": "ape~1.0.0-beta.7~_repo_rules~rm" - } - }, - "cosmos-uname": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", - "output": "uname", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", - "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uname" - } - }, - "uname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uname//:uname", - "name": "ape~1.0.0-beta.7~_repo_rules~uname" - } - }, - "cosmos-pigz": { - "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", - "output": "pigz", - "urls": [ - "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" - ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pigz" - } - }, - "pigz": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pigz//:pigz", - "name": "ape~1.0.0-beta.7~_repo_rules~pigz" - } - } - } - } - }, - "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": { - "general": { - "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local_config_apple_cc": { - "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf", - "attributes": { - "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc" - } - }, - "local_config_apple_cc_toolchains": { - "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf_toolchains", - "attributes": { - "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains" - } - } - } - } - }, - "@@aspect_bazel_lib~2.7.0//lib:extensions.bzl%toolchains": { - "general": { - "bzlTransitiveDigest": "xkCrElz5fQuBa39cTFFUicDgs1jDcoxP+48jsvXon4M=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "expand_template_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_windows_amd64", - "platform": "windows_amd64" - } - }, - "copy_to_directory_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_windows_amd64", - "platform": "windows_amd64" - } - }, - "jq_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_amd64", - "platform": "darwin_amd64", - "version": "1.7" - } - }, - "copy_to_directory_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_freebsd_amd64", - "platform": "freebsd_amd64" - } - }, - "expand_template_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_amd64", - "platform": "linux_amd64" - } - }, - "jq_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_arm64", - "platform": "linux_arm64", - "version": "1.7" - } - }, - "coreutils_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_arm64", - "platform": "darwin_arm64", - "version": "0.0.23" - } - }, - "copy_to_directory_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_arm64", - "platform": "linux_arm64" - } - }, - "bsd_tar_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "bsdtar_binary_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_arm64", - "platform": "linux_arm64" - } - }, - "copy_directory_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_amd64", - "platform": "darwin_amd64" - } - }, - "coreutils_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_amd64", - "platform": "darwin_amd64", - "version": "0.0.23" - } - }, - "coreutils_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_arm64", - "platform": "linux_arm64", - "version": "0.0.23" - } - }, - "yq_linux_s390x": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_s390x", - "platform": "linux_s390x", - "version": "4.25.2" - } - }, - "yq": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_host_alias_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq" - } - }, - "expand_template_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_amd64", - "platform": "darwin_amd64" - } - }, - "copy_directory_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_amd64", - "platform": "linux_amd64" - } - }, - "jq_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_arm64", - "platform": "darwin_arm64", - "version": "1.7" - } - }, - "yq_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_amd64", - "platform": "darwin_amd64", - "version": "4.25.2" - } - }, - "copy_directory_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_arm64", - "platform": "linux_arm64" - } - }, - "expand_template_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_toolchains", - "user_repository_name": "expand_template" - } - }, - "bats_assert": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bats_assert", - "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", - "urls": [ - "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" - ], - "strip_prefix": "bats-assert-2.1.0", - "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" - } - }, - "copy_to_directory_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_amd64", - "platform": "darwin_amd64" - } - }, - "bsd_tar_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "bsdtar_binary_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_amd64", - "platform": "linux_amd64" - } - }, - "yq_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_toolchains", - "user_repository_name": "yq" - } - }, - "bats_support": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bats_support", - "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", - "urls": [ - "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" - ], - "strip_prefix": "bats-support-0.3.0", - "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" - } - }, - "bsd_tar_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "bsdtar_binary_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_windows_amd64", - "platform": "windows_amd64" - } - }, - "jq": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_host_alias_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq" - } - }, - "expand_template_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_arm64", - "platform": "darwin_arm64" - } - }, - "bsd_tar_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "bsdtar_binary_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_arm64", - "platform": "darwin_arm64" - } - }, - "copy_to_directory_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_amd64", - "platform": "linux_amd64" - } - }, - "coreutils_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_amd64", - "platform": "linux_amd64", - "version": "0.0.23" - } - }, - "copy_directory_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_toolchains", - "user_repository_name": "copy_directory" - } - }, - "yq_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_amd64", - "platform": "linux_amd64", - "version": "4.25.2" - } - }, - "copy_to_directory_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_arm64", - "platform": "darwin_arm64" - } - }, - "coreutils_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_toolchains", - "user_repository_name": "coreutils" - } - }, - "copy_directory_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_freebsd_amd64", - "platform": "freebsd_amd64" - } - }, - "bats_file": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bats_file", - "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", - "urls": [ - "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" - ], - "strip_prefix": "bats-file-0.4.0", - "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" - } - }, - "expand_template_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_arm64", - "platform": "linux_arm64" - } - }, - "jq_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_amd64", - "platform": "linux_amd64", - "version": "1.7" - } - }, - "bsd_tar_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "bsdtar_binary_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_amd64", - "platform": "darwin_amd64" - } - }, - "bsd_tar_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", - "ruleClassName": "tar_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_toolchains", - "user_repository_name": "bsd_tar" - } - }, - "bats_toolchains": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~bats_toolchains", - "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", - "urls": [ - "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" - ], - "strip_prefix": "bats-core-1.10.0", - "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" - } - }, - "yq_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_windows_amd64", - "platform": "windows_amd64", - "version": "4.25.2" - } - }, - "jq_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_windows_amd64", - "platform": "windows_amd64", - "version": "1.7" - } - }, - "expand_template_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_freebsd_amd64", - "platform": "freebsd_amd64" - } - }, - "yq_linux_ppc64le": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_ppc64le", - "platform": "linux_ppc64le", - "version": "4.25.2" - } - }, - "copy_to_directory_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_toolchains", - "user_repository_name": "copy_to_directory" - } - }, - "jq_toolchains": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_toolchains_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~jq_toolchains", - "user_repository_name": "jq" - } - }, - "copy_directory_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_arm64", - "platform": "darwin_arm64" - } - }, - "copy_directory_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_windows_amd64", - "platform": "windows_amd64" - } - }, - "yq_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_arm64", - "platform": "darwin_arm64", - "version": "4.25.2" - } - }, - "coreutils_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_windows_amd64", - "platform": "windows_amd64", - "version": "0.0.23" - } - }, - "yq_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", - "attributes": { - "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_arm64", - "platform": "linux_arm64", - "version": "4.25.2" - } - } - } - } - }, - "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { - "general": { - "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local_config_cc": { - "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", - "ruleClassName": "cc_autoconf", - "attributes": { - "name": "bazel_tools~cc_configure_extension~local_config_cc" - } - }, - "local_config_cc_toolchains": { - "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", - "ruleClassName": "cc_autoconf_toolchains", - "attributes": { - "name": "bazel_tools~cc_configure_extension~local_config_cc_toolchains" - } - } - } - } - }, - "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { - "general": { - "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local_config_sh": { - "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", - "ruleClassName": "sh_config", - "attributes": { - "name": "bazel_tools~sh_configure_extension~local_config_sh" - } - } - } - } - }, - "@@rules_java~7.1.0//java:extensions.bzl%toolchains": { - "general": { - "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "remotejdk21_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_s390x_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" - } - }, - "remotejdk21_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk21_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz" - ] - } - }, - "remotejdk17_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" - ] - } - }, - "remote_java_tools_windows": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows", - "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip" - ] - } - }, - "remotejdk11_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" - ] - } - }, - "remotejdk11_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk17_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" - ] - } - }, - "remotejdk11_linux_s390x_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" - } - }, - "remotejdk11_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" - ] - } - }, - "remotejdk11_win_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", - "strip_prefix": "jdk-11.0.13+8", - "urls": [ - "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" - ] - } - }, - "remotejdk17_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" - ] - } - }, - "remotejdk21_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz" - ] - } - }, - "remotejdk21_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk17_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" - ] - } - }, - "remotejdk11_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_ppc64le_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" - } - }, - "remotejdk21_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz" - ] - } - }, - "remote_java_tools_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux", - "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip" - ] - } - }, - "remotejdk21_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip" - ] - } - }, - "remotejdk21_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk11_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_s390x": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", - "strip_prefix": "jdk-11.0.15+10", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", - "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" - ] - } - }, - "remotejdk17_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk17_win_arm64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" - ] - } - }, - "remotejdk11_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_ppc64le_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" - } - }, - "remotejdk17_win_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" - ] - } - }, - "remote_java_tools_darwin_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64", - "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip" - ] - } - }, - "remotejdk17_linux_ppc64le": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", - "strip_prefix": "jdk-17.0.8.1+1", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", - "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" - ] - } - }, - "remotejdk21_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_win_arm64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" - } - }, - "local_jdk": { - "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl", - "ruleClassName": "_local_java_repository_rule", - "attributes": { - "name": "rules_java~7.1.0~toolchains~local_jdk", - "java_home": "", - "version": "", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" - } - }, - "remote_java_tools_darwin_x86_64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64", - "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip" - ] - } - }, - "remote_java_tools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools", - "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip" - ] - } - }, - "remotejdk17_linux_s390x": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", - "strip_prefix": "jdk-17.0.8.1+1", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", - "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" - ] - } - }, - "remotejdk17_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_ppc64le": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", - "strip_prefix": "jdk-11.0.15+10", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", - "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" - ] - } - }, - "remotejdk11_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" - ] - } - }, - "remotejdk21_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" - } - } - } - } - }, - "@@toolchain_utils~1.0.0-beta.9//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "EyT/sMAKLPArwKQR7yfwzX0Jj6UkbNPq+yyLByJVyUY=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/triplet:repository.bzl", - "ruleClassName": "triplet", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.9~_repo_rules~local" - } - }, - "launcher": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/launcher:repository.bzl", - "ruleClassName": "launcher", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.9~_repo_rules~launcher" - } - } - } - } - } - } + "moduleExtensions": {} } diff --git a/e2e/MODULE.bazel b/e2e/MODULE.bazel index c0e798c..caa03ab 100644 --- a/e2e/MODULE.bazel +++ b/e2e/MODULE.bazel @@ -5,9 +5,6 @@ module( ], ) -bazel_dep(name = "rules_gzip", version = "1.0.0-beta.1") -bazel_dep(name = "rules_bzip2", version = "1.0.0-beta.1") -bazel_dep(name = "rules_zstd", version = "1.0.0-beta.1") bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.9") bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.1") bazel_dep(name = "rules_diff", version = "1.0.0-beta.3") diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index cf0b705..d6ec897 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 3, - "moduleFileHash": "1ded0137fc7709721c4560c884b3ef3c908b63c88a8bc196120bd6b13166143f", + "moduleFileHash": "581d63034975a769f23311b7ad90c94efce0e75dc8218cbda7674ab804472c41", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -13,7 +13,7 @@ "compatibilityMode": "ERROR" }, "localOverrideHashes": { - "rules_tar": "ab81c59229521a9beec99e822488dacf951a3e638a636e0e6e2bbefa8726d086", + "rules_tar": "52521da1b9c14123fc132ab71aca158541bc9d4b14588798694fc5380f425873", "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787" }, "moduleDepGraph": { @@ -26,9 +26,6 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "rules_gzip": "rules_gzip@1.0.0-beta.1", - "rules_bzip2": "rules_bzip2@1.0.0-beta.1", - "rules_zstd": "rules_zstd@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "rules_coreutils": "rules_coreutils@1.0.0-beta.1", "rules_diff": "rules_diff@1.0.0-beta.3", @@ -37,168 +34,50 @@ "local_config_platform": "local_config_platform@_" } }, - "rules_gzip@1.0.0-beta.1": { - "name": "rules_gzip", - "version": "1.0.0-beta.1", - "key": "rules_gzip@1.0.0-beta.1", - "repoName": "rules_gzip", + "toolchain_utils@1.0.0-beta.9": { + "name": "toolchain_utils", + "version": "1.0.0-beta.9", + "key": "toolchain_utils@1.0.0-beta.9", + "repoName": "toolchain_utils", "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//gzip/toolchain/..." - ], + "toolchainsToRegister": [], "extensionUsages": [ - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "rules_gzip@1.0.0-beta.1", - "location": { - "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", - "line": 14, - "column": 23 - }, - "imports": { - "ape-pigz": "ape-pigz", - "pigz": "pigz" - }, - "devImports": [], - "tags": [ - { - "tagName": "symlink", - "attributeValues": { - "name": "pigz", - "target": "@ape-pigz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", - "line": 16, - "column": 15 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "rules_gzip@1.0.0-beta.1", + "usingModule": "toolchain_utils@1.0.0-beta.9", "location": { - "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", "line": 0, "column": 0 }, "imports": { - "resolved-pigz": "resolved-pigz" - }, - "devImports": [], - "tags": [ - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//gzip/toolchain/pigz:type", - "name": "resolved-pigz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", - "line": 24, - "column": 9 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "rules_coreutils": "rules_coreutils@1.0.0-beta.1", - "ape": "ape@1.0.0-beta.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_gzip~1.0.0-beta.1", - "urls": [ - "https://gitlab.arm.com/bazel/rules_gzip/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" - ], - "integrity": "sha512-d608JvMhu4oVc3oQp3bs1OE45IuPiSz8LTQ0oHXZ6+dy6TkDaK+AGo7r1u4UqnRrix7im4WD4EK4YmTq5Yb+xw==", - "strip_prefix": "rules_gzip-v1.0.0-beta.1", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_bzip2@1.0.0-beta.1": { - "name": "rules_bzip2", - "version": "1.0.0-beta.1", - "key": "rules_bzip2@1.0.0-beta.1", - "repoName": "rules_bzip2", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//bzip2/toolchain/..." - ], - "extensionUsages": [ - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "rules_bzip2@1.0.0-beta.1", - "location": { - "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", - "line": 14, - "column": 23 - }, - "imports": { - "ape-bzip2": "ape-bzip2", - "bzip2": "bzip2" + "local": "local", + "launcher": "launcher" }, "devImports": [], "tags": [ { - "tagName": "symlink", + "tagName": "//toolchain/local/triplet:defs.bzl%toolchain_local_triplet", "attributeValues": { - "name": "bzip2", - "target": "@ape-bzip2" + "name": "local" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", - "line": 16, - "column": 15 + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", + "line": 15, + "column": 8 } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "rules_bzip2@1.0.0-beta.1", - "location": { - "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "resolved-bzip2": "resolved-bzip2" - }, - "devImports": [], - "tags": [ + }, { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "tagName": "//toolchain/launcher:repository.bzl%launcher", "attributeValues": { - "toolchain_type": "//bzip2/toolchain/bzip2:type", - "name": "resolved-bzip2" + "name": "launcher" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", - "line": 24, + "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", + "line": 21, "column": 9 } } @@ -208,9 +87,8 @@ } ], "deps": { - "rules_coreutils": "rules_coreutils@1.0.0-beta.1", - "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -218,203 +96,33 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "rules_bzip2~1.0.0-beta.1", + "name": "toolchain_utils~1.0.0-beta.9", "urls": [ - "https://gitlab.arm.com/bazel/rules_bzip2/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.9/downloads/src.tar.gz" ], - "integrity": "sha512-LxqJpKipVUyxOxyRq2peyrIv2v8aUiLiDMbhGqKzSjg+tzHMDapOo/mO6RRmh7N/7UvsxXKUlnPqSwzWNi82Gw==", - "strip_prefix": "rules_bzip2-v1.0.0-beta.1", + "integrity": "sha512-H48NSkoptDhNCzbWw/IRThAGL0z+iL6xP1Q+kw6uxsbT8CNXNyBcYuihQCpRuJC8tgBOXyOIXbSu7df6BRYz7w==", + "strip_prefix": "toolchain_utils-v1.0.0-beta.9", "remote_patches": {}, "remote_patch_strip": 0 } } }, - "rules_zstd@1.0.0-beta.1": { - "name": "rules_zstd", + "rules_coreutils@1.0.0-beta.1": { + "name": "rules_coreutils", "version": "1.0.0-beta.1", - "key": "rules_zstd@1.0.0-beta.1", - "repoName": "rules_zstd", + "key": "rules_coreutils@1.0.0-beta.1", + "repoName": "rules_coreutils", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "//zstd/toolchain/..." + "//coreutils/toolchain/..." ], "extensionUsages": [ - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "rules_zstd@1.0.0-beta.1", - "location": { - "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", - "line": 15, - "column": 23 - }, - "imports": { - "ape-zstd": "ape-zstd", - "zstd": "zstd" - }, - "devImports": [], - "tags": [ - { - "tagName": "symlink", - "attributeValues": { - "name": "zstd", - "target": "@ape-zstd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", - "line": 17, - "column": 15 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "rules_zstd@1.0.0-beta.1", + "usingModule": "rules_coreutils@1.0.0-beta.1", "location": { - "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "resolved-zstd": "resolved-zstd" - }, - "devImports": [], - "tags": [ - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//zstd/toolchain/zstd:type", - "name": "resolved-zstd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", - "line": 25, - "column": 9 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_skylib": "bazel_skylib@1.5.0", - "aspect_bazel_lib": "aspect_bazel_lib@2.7.0", - "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_zstd~1.0.0-beta.1", - "urls": [ - "https://gitlab.arm.com/bazel/rules_zstd/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" - ], - "integrity": "sha512-dwkIQ5WKxbfCpNDiP7wd9cO+AvXXxf00v1IKbcXE6v/9fquTfggVUgEdPS1WTbC95HKRUaal8/5j0cCF17Z4EQ==", - "strip_prefix": "rules_zstd-v1.0.0-beta.1", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "toolchain_utils@1.0.0-beta.9": { - "name": "toolchain_utils", - "version": "1.0.0-beta.9", - "key": "toolchain_utils@1.0.0-beta.9", - "repoName": "toolchain_utils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "toolchain_utils@1.0.0-beta.9", - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "local": "local", - "launcher": "launcher" - }, - "devImports": [], - "tags": [ - { - "tagName": "//toolchain/local/triplet:defs.bzl%toolchain_local_triplet", - "attributeValues": { - "name": "local" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", - "line": 15, - "column": 8 - } - }, - { - "tagName": "//toolchain/launcher:repository.bzl%launcher", - "attributeValues": { - "name": "launcher" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel", - "line": 21, - "column": 9 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.9", - "urls": [ - "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.9/downloads/src.tar.gz" - ], - "integrity": "sha512-H48NSkoptDhNCzbWw/IRThAGL0z+iL6xP1Q+kw6uxsbT8CNXNyBcYuihQCpRuJC8tgBOXyOIXbSu7df6BRYz7w==", - "strip_prefix": "toolchain_utils-v1.0.0-beta.9", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_coreutils@1.0.0-beta.1": { - "name": "rules_coreutils", - "version": "1.0.0-beta.1", - "key": "rules_coreutils@1.0.0-beta.1", - "repoName": "rules_coreutils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//coreutils/toolchain/..." - ], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "rules_coreutils@1.0.0-beta.1", - "location": { - "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.1/MODULE.bazel", "line": 0, "column": 0 }, @@ -2794,7 +2502,7 @@ ], "deps": { "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -2892,7 +2600,7 @@ "rules_bzip2": "rules_bzip2@1.0.0-beta.1", "rules_zstd": "rules_zstd@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", - "ape": "ape@1.0.0-beta.7", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" } @@ -3024,7 +2732,7 @@ "rules_license": "rules_license@0.0.7", "rules_proto": "rules_proto@4.0.0", "rules_python": "rules_python@0.4.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "com_google_protobuf": "protobuf@3.19.6", "zlib": "zlib@1.3", "build_bazel_apple_support": "apple_support@1.5.0", @@ -3040,14 +2748,118 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_" } }, - "ape@1.0.0-beta.7": { + "bazel_skylib@1.5.0": { + "name": "bazel_skylib", + "version": "1.5.0", + "key": "bazel_skylib@1.5.0", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.10", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "bazel_skylib~1.5.0", + "urls": [ + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + ], + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "platforms@0.0.10": { + "name": "platforms", + "version": "0.0.10", + "key": "platforms@0.0.10", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@platforms//host:extension.bzl", + "extensionName": "host_platform", + "usingModule": "platforms@0.0.10", + "location": { + "file": "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel", + "line": 9, + "column": 30 + }, + "imports": { + "host_platform": "host_platform" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_license": "rules_license@0.0.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "platforms", + "urls": [ + "https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz" + ], + "integrity": "sha256-IY7+juc20mo1cmY7N0olPAErcW2K8MB+hC6C8jigp+4=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "download_utils@1.0.0-beta.2": { + "name": "download_utils", + "version": "1.0.0-beta.2", + "key": "download_utils@1.0.0-beta.2", + "repoName": "download_utils", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "download_utils~1.0.0-beta.2", + "urls": [ + "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" + ], + "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", + "strip_prefix": "download_utils-v1.0.0-beta.2", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "ape@1.0.0-beta.11": { "name": "ape", - "version": "1.0.0-beta.7", - "key": "ape@1.0.0-beta.7", + "version": "1.0.0-beta.11", + "key": "ape@1.0.0-beta.11", "repoName": "ape", "executionPlatformsToRegister": [], "toolchainsToRegister": [ @@ -3057,9 +2869,9 @@ { "extensionBzlFile": "//:MODULE.bazel", "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-beta.7", + "usingModule": "ape@1.0.0-beta.11", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", "line": 0, "column": 0 }, @@ -3074,6 +2886,8 @@ "ape.pe": "ape.pe", "launcher": "launcher", "resolved-ape": "resolved-ape", + "cosmos-assimilate": "cosmos-assimilate", + "assimilate": "assimilate", "cosmos-awk": "cosmos-awk", "awk": "awk", "cosmos-b2sum": "cosmos-b2sum", @@ -3425,8 +3239,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 17, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 18, "column": 17 } }, @@ -3440,8 +3254,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 36, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 37, "column": 7 } }, @@ -3459,8 +3273,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 45, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 46, "column": 14 } }, @@ -3476,8 +3290,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 58, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 59, "column": 8 } }, @@ -3495,8 +3309,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -3514,8 +3328,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -3533,8 +3347,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 66, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 67, "column": 18 } }, @@ -3545,8 +3359,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 85, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 86, "column": 3 } }, @@ -3564,8 +3378,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 87, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 88, "column": 7 } }, @@ -3577,11 +3391,43 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 100, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 101, "column": 9 } }, + { + "tagName": "@download_utils//download/file:defs.bzl%download_file", + "attributeValues": { + "executable": true, + "integrity": "sha256-zBP7dVhBaUKyxbSlqVWKjC293c+t0NSMfSYW0/FnV0s=", + "output": "assimilate", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/assimilate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/assimilate" + ], + "name": "cosmos-assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, + "column": 22 + } + }, + { + "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", + "attributeValues": { + "binary": "@cosmos-assimilate//:assimilate", + "name": "assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, + "column": 23 + } + }, { "tagName": "@download_utils//download/file:defs.bzl%download_file", "attributeValues": { @@ -3596,8 +3442,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3609,8 +3455,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3628,8 +3474,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3641,8 +3487,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3660,8 +3506,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3673,8 +3519,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3692,8 +3538,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3705,8 +3551,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3724,8 +3570,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3737,8 +3583,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3756,8 +3602,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3769,8 +3615,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3788,8 +3634,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3801,8 +3647,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3820,8 +3666,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3833,8 +3679,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3852,8 +3698,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3865,8 +3711,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3884,8 +3730,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3897,8 +3743,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3916,8 +3762,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3929,8 +3775,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3948,8 +3794,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3961,8 +3807,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -3980,8 +3826,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -3993,8 +3839,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4012,8 +3858,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4025,8 +3871,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4044,8 +3890,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4057,8 +3903,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4076,8 +3922,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4089,8 +3935,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4108,8 +3954,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4121,8 +3967,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4140,8 +3986,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4153,8 +3999,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4172,8 +4018,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4185,8 +4031,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4204,8 +4050,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4217,8 +4063,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4236,8 +4082,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4249,8 +4095,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4268,8 +4114,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4281,8 +4127,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4300,8 +4146,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4313,8 +4159,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4332,8 +4178,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4345,8 +4191,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4364,8 +4210,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4377,8 +4223,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4396,8 +4242,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4409,8 +4255,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4428,8 +4274,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4441,8 +4287,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4460,8 +4306,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4473,8 +4319,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4492,8 +4338,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4505,8 +4351,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4524,8 +4370,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4537,8 +4383,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4556,8 +4402,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4569,8 +4415,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4588,8 +4434,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4601,8 +4447,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4620,8 +4466,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4633,8 +4479,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4652,8 +4498,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4665,8 +4511,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4684,8 +4530,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4697,8 +4543,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4716,8 +4562,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4729,8 +4575,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4748,8 +4594,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4761,8 +4607,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4780,8 +4626,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4793,8 +4639,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4812,8 +4658,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4825,8 +4671,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4844,8 +4690,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4857,8 +4703,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4876,8 +4722,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4889,8 +4735,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4908,8 +4754,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4921,8 +4767,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4940,8 +4786,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4953,8 +4799,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -4972,8 +4818,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -4985,8 +4831,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5004,8 +4850,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5017,8 +4863,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5036,8 +4882,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5049,8 +4895,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5068,8 +4914,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5081,8 +4927,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5100,8 +4946,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5113,8 +4959,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5132,8 +4978,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5145,8 +4991,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5164,8 +5010,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5177,8 +5023,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5196,8 +5042,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5209,8 +5055,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5228,8 +5074,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5241,8 +5087,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5260,8 +5106,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5273,8 +5119,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5292,8 +5138,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5305,8 +5151,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5324,8 +5170,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5337,8 +5183,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5356,8 +5202,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5369,8 +5215,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5388,8 +5234,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5401,8 +5247,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5420,8 +5266,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5433,8 +5279,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5452,8 +5298,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5465,8 +5311,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5484,8 +5330,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5497,8 +5343,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5516,8 +5362,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5529,8 +5375,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5548,8 +5394,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5561,8 +5407,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5580,8 +5426,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5593,8 +5439,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5612,8 +5458,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5625,8 +5471,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5644,8 +5490,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5657,8 +5503,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5676,8 +5522,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5689,8 +5535,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5708,8 +5554,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5721,8 +5567,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5740,8 +5586,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5753,8 +5599,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5772,8 +5618,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5785,8 +5631,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5804,8 +5650,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5817,8 +5663,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5836,8 +5682,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5849,8 +5695,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5868,8 +5714,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5881,8 +5727,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5900,8 +5746,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5913,8 +5759,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5932,8 +5778,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5945,8 +5791,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5964,8 +5810,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -5977,8 +5823,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -5996,8 +5842,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6009,8 +5855,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6028,8 +5874,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6041,8 +5887,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6060,8 +5906,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6073,8 +5919,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6092,8 +5938,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6105,8 +5951,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6124,8 +5970,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6137,8 +5983,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6156,8 +6002,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6169,8 +6015,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6188,8 +6034,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6201,8 +6047,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6220,8 +6066,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6233,8 +6079,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6252,8 +6098,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6265,8 +6111,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6284,8 +6130,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6297,8 +6143,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6316,8 +6162,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6329,8 +6175,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6348,8 +6194,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6361,8 +6207,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6380,8 +6226,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6393,8 +6239,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6412,8 +6258,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6425,8 +6271,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6444,8 +6290,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6457,8 +6303,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6476,8 +6322,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6489,8 +6335,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6508,8 +6354,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6521,8 +6367,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6540,8 +6386,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6553,8 +6399,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6572,8 +6418,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6585,8 +6431,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6604,8 +6450,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6617,8 +6463,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6636,8 +6482,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6649,8 +6495,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6668,8 +6514,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6681,8 +6527,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6700,8 +6546,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6713,8 +6559,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6732,8 +6578,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6745,8 +6591,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6764,8 +6610,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6777,8 +6623,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6796,8 +6642,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6809,8 +6655,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6828,8 +6674,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6841,8 +6687,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6860,8 +6706,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6873,8 +6719,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6892,8 +6738,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6905,8 +6751,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6924,8 +6770,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6937,8 +6783,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6956,8 +6802,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -6969,8 +6815,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -6988,8 +6834,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7001,8 +6847,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7020,8 +6866,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7033,8 +6879,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7052,8 +6898,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7065,8 +6911,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7084,8 +6930,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7097,8 +6943,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7116,8 +6962,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7129,8 +6975,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7148,8 +6994,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7161,8 +7007,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7180,8 +7026,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7193,8 +7039,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7212,8 +7058,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7225,8 +7071,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7244,8 +7090,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7257,8 +7103,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7276,8 +7122,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7289,8 +7135,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7308,8 +7154,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7321,8 +7167,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7340,8 +7186,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7353,8 +7199,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7372,8 +7218,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7385,8 +7231,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7404,8 +7250,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7417,8 +7263,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7436,8 +7282,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7449,8 +7295,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7468,8 +7314,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7481,8 +7327,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7500,8 +7346,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7513,8 +7359,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7532,8 +7378,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7545,8 +7391,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7564,8 +7410,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7577,8 +7423,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7596,8 +7442,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7609,8 +7455,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7628,8 +7474,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7641,8 +7487,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7660,8 +7506,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7673,8 +7519,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7692,8 +7538,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7705,8 +7551,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7724,8 +7570,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7737,8 +7583,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7756,8 +7602,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7769,8 +7615,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7788,8 +7634,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7801,8 +7647,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7820,8 +7666,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7833,8 +7679,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7852,8 +7698,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7865,8 +7711,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7884,8 +7730,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7897,8 +7743,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7916,8 +7762,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7929,8 +7775,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7948,8 +7794,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7961,8 +7807,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -7980,8 +7826,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -7993,8 +7839,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8012,8 +7858,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8025,8 +7871,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8044,8 +7890,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8057,8 +7903,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8076,8 +7922,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8089,8 +7935,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8108,8 +7954,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8121,8 +7967,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8140,8 +7986,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8153,8 +7999,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8172,8 +8018,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8185,8 +8031,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8204,8 +8050,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8217,8 +8063,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8236,8 +8082,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8249,8 +8095,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8268,8 +8114,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8281,8 +8127,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8300,8 +8146,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8313,8 +8159,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8332,8 +8178,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8345,8 +8191,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8364,8 +8210,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8377,8 +8223,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8396,8 +8242,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8409,8 +8255,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8428,8 +8274,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8441,8 +8287,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8460,8 +8306,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 113, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 114, "column": 22 } }, @@ -8473,8 +8319,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 123, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 124, "column": 23 } }, @@ -8492,8 +8338,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8505,8 +8351,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8524,8 +8370,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8537,8 +8383,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8556,8 +8402,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8569,8 +8415,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8588,8 +8434,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8601,8 +8447,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8620,8 +8466,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8633,8 +8479,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8652,8 +8498,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8665,8 +8511,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8684,8 +8530,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8697,8 +8543,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8716,8 +8562,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8729,8 +8575,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8748,8 +8594,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8761,8 +8607,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8780,8 +8626,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 293, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 295, "column": 22 } }, @@ -8793,8 +8639,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 303, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 305, "column": 23 } }, @@ -8812,8 +8658,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 330, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 332, "column": 22 } }, @@ -8825,8 +8671,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 340, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 342, "column": 23 } } @@ -8837,15 +8683,28 @@ { "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-beta.7", + "usingModule": "ape@1.0.0-beta.11", "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 109, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 110, "column": 23 }, "imports": {}, "devImports": [], "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "ape-assimilate", + "target": "@assimilate" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, + "column": 23 + } + }, { "tagName": "symlink", "attributeValues": { @@ -8854,8 +8713,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8867,8 +8726,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8880,8 +8739,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8893,8 +8752,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8906,8 +8765,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8919,8 +8778,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8932,8 +8791,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8945,8 +8804,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8958,8 +8817,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8971,8 +8830,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8984,8 +8843,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -8997,8 +8856,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9010,8 +8869,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9023,8 +8882,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9036,8 +8895,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9049,8 +8908,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9062,8 +8921,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9075,8 +8934,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9088,8 +8947,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9101,8 +8960,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9114,8 +8973,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9127,8 +8986,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9140,8 +8999,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9153,8 +9012,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9166,8 +9025,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9179,8 +9038,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9192,8 +9051,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9205,8 +9064,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9218,8 +9077,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9231,8 +9090,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9244,8 +9103,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9257,8 +9116,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9270,8 +9129,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9283,8 +9142,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9296,8 +9155,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9309,8 +9168,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9322,8 +9181,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9335,8 +9194,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9348,8 +9207,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9361,8 +9220,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9374,8 +9233,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9387,8 +9246,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9400,8 +9259,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9413,8 +9272,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9426,8 +9285,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9439,8 +9298,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9452,8 +9311,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9465,8 +9324,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9478,8 +9337,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9491,8 +9350,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9504,8 +9363,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9517,8 +9376,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9530,8 +9389,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9543,8 +9402,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9556,8 +9415,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9569,8 +9428,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9582,8 +9441,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9595,8 +9454,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9608,8 +9467,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9621,8 +9480,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9634,8 +9493,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9647,8 +9506,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9660,8 +9519,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9673,8 +9532,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9686,8 +9545,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9699,8 +9558,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9712,8 +9571,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9725,8 +9584,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9738,8 +9597,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9751,8 +9610,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9764,8 +9623,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9777,8 +9636,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9790,8 +9649,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9803,8 +9662,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9816,8 +9675,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9829,8 +9688,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9842,8 +9701,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9855,8 +9714,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9868,8 +9727,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9881,8 +9740,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9894,8 +9753,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9907,8 +9766,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9920,8 +9779,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9933,8 +9792,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9946,8 +9805,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9959,8 +9818,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9972,8 +9831,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9985,8 +9844,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -9998,8 +9857,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10011,8 +9870,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10024,8 +9883,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10037,8 +9896,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10050,8 +9909,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10063,8 +9922,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10076,8 +9935,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10089,8 +9948,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10102,8 +9961,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10115,8 +9974,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10128,8 +9987,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10141,8 +10000,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10154,8 +10013,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10167,8 +10026,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10180,8 +10039,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10193,8 +10052,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10206,8 +10065,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10219,8 +10078,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10232,8 +10091,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10245,8 +10104,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10258,8 +10117,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10271,8 +10130,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10284,8 +10143,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10297,8 +10156,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10310,8 +10169,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10323,8 +10182,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10336,8 +10195,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10349,8 +10208,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10362,8 +10221,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10375,8 +10234,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10388,8 +10247,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10401,8 +10260,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10414,8 +10273,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10427,8 +10286,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10440,8 +10299,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10453,8 +10312,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10466,8 +10325,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10479,8 +10338,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10492,8 +10351,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10505,8 +10364,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10518,8 +10377,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10531,8 +10390,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10544,8 +10403,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10557,8 +10416,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10570,8 +10429,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10583,8 +10442,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10596,8 +10455,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10609,8 +10468,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10622,8 +10481,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10635,8 +10494,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10648,8 +10507,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10661,8 +10520,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10674,8 +10533,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10687,8 +10546,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10700,8 +10559,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10713,8 +10572,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10726,8 +10585,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10739,8 +10598,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10752,8 +10611,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10765,8 +10624,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10778,8 +10637,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10791,8 +10650,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10804,8 +10663,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10817,8 +10676,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10830,8 +10689,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 127, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 128, "column": 23 } }, @@ -10843,8 +10702,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10856,8 +10715,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10869,8 +10728,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10882,8 +10741,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10895,8 +10754,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10908,8 +10767,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10921,8 +10780,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10934,8 +10793,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10947,8 +10806,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10960,8 +10819,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 307, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 309, "column": 23 } }, @@ -10973,8 +10832,8 @@ }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.7/MODULE.bazel", - "line": 344, + "file": "https://bcr.bazel.build/modules/ape/1.0.0-beta.11/MODULE.bazel", + "line": 346, "column": 23 } } @@ -10984,6 +10843,7 @@ } ], "deps": { + "platforms": "platforms@0.0.10", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "download_utils": "download_utils@1.0.0-beta.2", "bazel_tools": "bazel_tools@_", @@ -10993,30 +10853,95 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "ape~1.0.0-beta.7", + "name": "ape~1.0.0-beta.11", "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.7/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-beta.11/downloads/src.tar.gz" ], - "integrity": "sha512-5xqM1Z2LFCw3iS7ME8nDunrkEEdITYjapBpasgIJ9+svfxcXOB6LQ/JSso0Aw6L7GFWyk4QqvYvSTb6FHz4+XA==", - "strip_prefix": "ape-v1.0.0-beta.7", + "integrity": "sha512-qGyXIPfEYHMAhe75UrvEMaFD9Rhvh2NQTAGKVKDpUwPBvctNhF31eSknLU7YoDTWPyuQILMo6xy5pWWQ4UHqLw==", + "strip_prefix": "ape-v1.0.0-beta.11", "remote_patches": {}, "remote_patch_strip": 0 } } }, - "bazel_skylib@1.5.0": { - "name": "bazel_skylib", - "version": "1.5.0", - "key": "bazel_skylib@1.5.0", - "repoName": "bazel_skylib", + "rules_gzip@1.0.0-beta.1": { + "name": "rules_gzip", + "version": "1.0.0-beta.1", + "key": "rules_gzip@1.0.0-beta.1", + "repoName": "rules_gzip", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "//toolchains/unittest:cmd_toolchain", - "//toolchains/unittest:bash_toolchain" + "//gzip/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-pigz": "ape-pigz", + "pigz": "pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "pigz", + "target": "@ape-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_gzip@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-pigz": "resolved-pigz" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//gzip/toolchain/pigz:type", + "name": "resolved-pigz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_gzip/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } ], - "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11024,133 +10949,84 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "bazel_skylib~1.5.0", + "name": "rules_gzip~1.0.0-beta.1", "urls": [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + "https://gitlab.arm.com/bazel/rules_gzip/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" ], - "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", - "strip_prefix": "", + "integrity": "sha512-d608JvMhu4oVc3oQp3bs1OE45IuPiSz8LTQ0oHXZ6+dy6TkDaK+AGo7r1u4UqnRrix7im4WD4EK4YmTq5Yb+xw==", + "strip_prefix": "rules_gzip-v1.0.0-beta.1", "remote_patches": {}, "remote_patch_strip": 0 } } }, - "aspect_bazel_lib@2.7.0": { - "name": "aspect_bazel_lib", - "version": "2.7.0", - "key": "aspect_bazel_lib@2.7.0", - "repoName": "aspect_bazel_lib", + "rules_bzip2@1.0.0-beta.1": { + "name": "rules_bzip2", + "version": "1.0.0-beta.1", + "key": "rules_bzip2@1.0.0-beta.1", + "repoName": "rules_bzip2", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "@copy_directory_toolchains//:all", - "@copy_to_directory_toolchains//:all", - "@jq_toolchains//:all", - "@yq_toolchains//:all", - "@coreutils_toolchains//:all", - "@expand_template_toolchains//:all", - "@bats_toolchains//:all", - "@bsd_tar_toolchains//:all" + "//bzip2/toolchain/..." ], "extensionUsages": [ { - "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", - "extensionName": "toolchains", - "usingModule": "aspect_bazel_lib@2.7.0", + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_bzip2@1.0.0-beta.1", "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 17, - "column": 37 + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 }, "imports": { - "bats_toolchains": "bats_toolchains", - "bsd_tar_toolchains": "bsd_tar_toolchains", - "copy_directory_toolchains": "copy_directory_toolchains", - "copy_to_directory_toolchains": "copy_to_directory_toolchains", - "coreutils_toolchains": "coreutils_toolchains", - "expand_template_toolchains": "expand_template_toolchains", - "jq_toolchains": "jq_toolchains", - "yq_toolchains": "yq_toolchains" + "ape-bzip2": "ape-bzip2", + "bzip2": "bzip2" }, "devImports": [], "tags": [ { - "tagName": "copy_directory", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 18, - "column": 36 - } - }, - { - "tagName": "copy_to_directory", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 19, - "column": 39 - } - }, - { - "tagName": "jq", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 20, - "column": 24 - } - }, - { - "tagName": "yq", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 21, - "column": 24 - } - }, - { - "tagName": "coreutils", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 22, - "column": 31 - } - }, - { - "tagName": "tar", - "attributeValues": {}, + "tagName": "symlink", + "attributeValues": { + "name": "bzip2", + "target": "@ape-bzip2" + }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 23, - "column": 25 + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 } - }, + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_bzip2@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-bzip2": "resolved-bzip2" + }, + "devImports": [], + "tags": [ { - "tagName": "expand_template", - "attributeValues": {}, + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//bzip2/toolchain/bzip2:type", + "name": "resolved-bzip2" + }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "file": "https://bcr.bazel.build/modules/rules_bzip2/1.0.0-beta.1/MODULE.bazel", "line": 24, - "column": 37 - } - }, - { - "tagName": "bats", - "attributeValues": {}, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", - "line": 25, - "column": 26 + "column": 9 } } ], @@ -11159,40 +11035,9 @@ } ], "deps": { - "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", - "io_bazel_stardoc": "stardoc@0.5.4", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "aspect_bazel_lib~2.7.0", - "urls": [ - "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.0/bazel-lib-v2.7.0.tar.gz" - ], - "integrity": "sha256-NX2tnSEjJ8NdkkQZDvAQqtMV5z/6G+0aKeIMNy+co0Y=", - "strip_prefix": "bazel-lib-2.7.0", - "remote_patches": { - "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/go_dev_dep.patch": "sha256-KgABwDzOT+DugUHn9tHLOz05osnk2FLsS10d5zqG/M0=", - "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/module_dot_bazel_version.patch": "sha256-WYIBojN6hwiR6VcIhPR+k7VWAR6+4HaKVMA8WKDYwpw=" - }, - "remote_patch_strip": 1 - } - } - }, - "platforms@0.0.8": { - "name": "platforms", - "version": "0.0.8", - "key": "platforms@0.0.8", - "repoName": "platforms", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11200,26 +11045,96 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "platforms", + "name": "rules_bzip2~1.0.0-beta.1", "urls": [ - "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz" + "https://gitlab.arm.com/bazel/rules_bzip2/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" ], - "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=", - "strip_prefix": "", + "integrity": "sha512-LxqJpKipVUyxOxyRq2peyrIv2v8aUiLiDMbhGqKzSjg+tzHMDapOo/mO6RRmh7N/7UvsxXKUlnPqSwzWNi82Gw==", + "strip_prefix": "rules_bzip2-v1.0.0-beta.1", "remote_patches": {}, "remote_patch_strip": 0 } } }, - "download_utils@1.0.0-beta.2": { - "name": "download_utils", - "version": "1.0.0-beta.2", - "key": "download_utils@1.0.0-beta.2", - "repoName": "download_utils", + "rules_zstd@1.0.0-beta.1": { + "name": "rules_zstd", + "version": "1.0.0-beta.1", + "key": "rules_zstd@1.0.0-beta.1", + "repoName": "rules_zstd", "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], + "toolchainsToRegister": [ + "//zstd/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 15, + "column": 23 + }, + "imports": { + "ape-zstd": "ape-zstd", + "zstd": "zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "zstd", + "target": "@ape-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 17, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_zstd@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-zstd": "resolved-zstd" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//zstd/toolchain/zstd:type", + "name": "resolved-zstd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_zstd/1.0.0-beta.1/MODULE.bazel", + "line": 25, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_bazel_lib": "aspect_bazel_lib@2.7.0", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11227,12 +11142,12 @@ "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", "ruleClassName": "http_archive", "attributes": { - "name": "download_utils~1.0.0-beta.2", + "name": "rules_zstd~1.0.0-beta.1", "urls": [ - "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.2/downloads/src.tar.gz" + "https://gitlab.arm.com/bazel/rules_zstd/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" ], - "integrity": "sha512-n7eahkJiCgZaF5gGrgBIxUq0qBRMlnvklYOiATGU+sXGGEPDG1C8N/sjtCUHVes8x5GFy8ZLjcaJWiebFf2D6g==", - "strip_prefix": "download_utils-v1.0.0-beta.2", + "integrity": "sha512-dwkIQ5WKxbfCpNDiP7wd9cO+AvXXxf00v1IKbcXE6v/9fquTfggVUgEdPS1WTbC95HKRUaal8/5j0cCF17Z4EQ==", + "strip_prefix": "rules_zstd-v1.0.0-beta.1", "remote_patches": {}, "remote_patch_strip": 0 } @@ -11267,7 +11182,7 @@ } ], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11366,7 +11281,7 @@ } ], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "rules_cc": "rules_cc@0.0.9", "bazel_skylib": "bazel_skylib@1.5.0", "rules_proto": "rules_proto@4.0.0", @@ -11549,7 +11464,7 @@ "toolchainsToRegister": [], "extensionUsages": [], "deps": { - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "rules_cc": "rules_cc@0.0.9", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" @@ -11603,7 +11518,7 @@ ], "deps": { "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", + "platforms": "platforms@0.0.10", "bazel_tools": "bazel_tools@_", "local_config_platform": "local_config_platform@_" }, @@ -11622,6 +11537,154 @@ } } }, + "aspect_bazel_lib@2.7.0": { + "name": "aspect_bazel_lib", + "version": "2.7.0", + "key": "aspect_bazel_lib@2.7.0", + "repoName": "aspect_bazel_lib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@copy_directory_toolchains//:all", + "@copy_to_directory_toolchains//:all", + "@jq_toolchains//:all", + "@yq_toolchains//:all", + "@coreutils_toolchains//:all", + "@expand_template_toolchains//:all", + "@bats_toolchains//:all", + "@bsd_tar_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_bazel_lib@2.7.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 17, + "column": 37 + }, + "imports": { + "bats_toolchains": "bats_toolchains", + "bsd_tar_toolchains": "bsd_tar_toolchains", + "copy_directory_toolchains": "copy_directory_toolchains", + "copy_to_directory_toolchains": "copy_to_directory_toolchains", + "coreutils_toolchains": "coreutils_toolchains", + "expand_template_toolchains": "expand_template_toolchains", + "jq_toolchains": "jq_toolchains", + "yq_toolchains": "yq_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "copy_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 18, + "column": 36 + } + }, + { + "tagName": "copy_to_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 19, + "column": 39 + } + }, + { + "tagName": "jq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 20, + "column": 24 + } + }, + { + "tagName": "yq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 21, + "column": 24 + } + }, + { + "tagName": "coreutils", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 22, + "column": 31 + } + }, + { + "tagName": "tar", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 23, + "column": 25 + } + }, + { + "tagName": "expand_template", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 24, + "column": 37 + } + }, + { + "tagName": "bats", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/MODULE.bazel", + "line": 25, + "column": 26 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.10", + "io_bazel_stardoc": "stardoc@0.5.4", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0", + "urls": [ + "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.0/bazel-lib-v2.7.0.tar.gz" + ], + "integrity": "sha256-NX2tnSEjJ8NdkkQZDvAQqtMV5z/6G+0aKeIMNy+co0Y=", + "strip_prefix": "bazel-lib-2.7.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/go_dev_dep.patch": "sha256-KgABwDzOT+DugUHn9tHLOz05osnk2FLsS10d5zqG/M0=", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.0/patches/module_dot_bazel_version.patch": "sha256-WYIBojN6hwiR6VcIhPR+k7VWAR6+4HaKVMA8WKDYwpw=" + }, + "remote_patch_strip": 1 + } + } + }, "stardoc@0.5.4": { "name": "stardoc", "version": "0.5.4", @@ -11654,7 +11717,7 @@ } }, "moduleExtensions": { - "@@ape~1.0.0-beta.7//:MODULE.bazel%_repo_rules": { + "@@ape~1.0.0-beta.11//:MODULE.bazel%_repo_rules": { "general": { "bzlTransitiveDigest": "pPlw3Dcew6odD88G4yzy3pJxQQVT1YHwGbImNH4voCY=", "accumulatedFileDigests": {}, @@ -11677,7 +11740,7 @@ "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": "ape~1.0.0-beta.7~_repo_rules~zig-0.11.0-arm64-darwin" + "name": "ape~1.0.0-beta.11~_repo_rules~zig-0.11.0-arm64-darwin" } }, "zig": { @@ -11687,7 +11750,7 @@ "map": { "arm64-darwin": "@zig-0.11.0-arm64-darwin" }, - "name": "ape~1.0.0-beta.7~_repo_rules~zig" + "name": "ape~1.0.0-beta.11~_repo_rules~zig" } }, "ape-m1.c": { @@ -11701,19 +11764,19 @@ "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.1/ape/ape-m1.c" ], - "name": "ape~1.0.0-beta.7~_repo_rules~ape-m1.c" + "name": "ape~1.0.0-beta.11~_repo_rules~ape-m1.c" } }, "ape-arm64.macho": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/compile:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/compile:repository.bzl", "ruleClassName": "compile", "attributes": { "srcs": [ - "@@ape~1.0.0-beta.7~_repo_rules~ape-m1.c//:ape-m1.c" + "@@ape~1.0.0-beta.11~_repo_rules~ape-m1.c//:ape-m1.c" ], "output": "ape", - "zig": "@@ape~1.0.0-beta.7~_repo_rules~zig//:entrypoint", - "name": "ape~1.0.0-beta.7~_repo_rules~ape-arm64.macho" + "zig": "@@ape~1.0.0-beta.11~_repo_rules~zig//:entrypoint", + "name": "ape~1.0.0-beta.11~_repo_rules~ape-arm64.macho" } }, "ape-arm64.elf": { @@ -11727,7 +11790,7 @@ "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~1.0.0-beta.7~_repo_rules~ape-arm64.elf" + "name": "ape~1.0.0-beta.11~_repo_rules~ape-arm64.elf" } }, "ape-x86_64.elf": { @@ -11741,7 +11804,7 @@ "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~1.0.0-beta.7~_repo_rules~ape-x86_64.elf" + "name": "ape~1.0.0-beta.11~_repo_rules~ape-x86_64.elf" } }, "ape-x86_64.macho": { @@ -11755,14 +11818,14 @@ "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~1.0.0-beta.7~_repo_rules~ape-x86_64.macho" + "name": "ape~1.0.0-beta.11~_repo_rules~ape-x86_64.macho" } }, "ape.pe": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/pe:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/pe:repository.bzl", "ruleClassName": "pe", "attributes": { - "name": "ape~1.0.0-beta.7~_repo_rules~ape.pe" + "name": "ape~1.0.0-beta.11~_repo_rules~ape.pe" } }, "launcher": { @@ -11776,15 +11839,37 @@ "arm64-darwin": "@ape-arm64.macho", "windows": "@ape.pe" }, - "name": "ape~1.0.0-beta.7~_repo_rules~launcher" + "name": "ape~1.0.0-beta.11~_repo_rules~launcher" } }, "resolved-ape": { "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", "ruleClassName": "resolved", "attributes": { - "toolchain_type": "@@ape~1.0.0-beta.7//ape/toolchain/ape:type", - "name": "ape~1.0.0-beta.7~_repo_rules~resolved-ape" + "toolchain_type": "@@ape~1.0.0-beta.11//ape/toolchain/ape:type", + "name": "ape~1.0.0-beta.11~_repo_rules~resolved-ape" + } + }, + "cosmos-assimilate": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zBP7dVhBaUKyxbSlqVWKjC293c+t0NSMfSYW0/FnV0s=", + "output": "assimilate", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/assimilate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/assimilate" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-assimilate" + } + }, + "assimilate": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-assimilate//:assimilate", + "name": "ape~1.0.0-beta.11~_repo_rules~assimilate" } }, "cosmos-awk": { @@ -11798,15 +11883,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-awk" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-awk" } }, "awk": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-awk//:awk", - "name": "ape~1.0.0-beta.7~_repo_rules~awk" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-awk//:awk", + "name": "ape~1.0.0-beta.11~_repo_rules~awk" } }, "cosmos-b2sum": { @@ -11820,15 +11905,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-b2sum" } }, "b2sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-b2sum//:b2sum", - "name": "ape~1.0.0-beta.7~_repo_rules~b2sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-b2sum//:b2sum", + "name": "ape~1.0.0-beta.11~_repo_rules~b2sum" } }, "cosmos-base32": { @@ -11842,15 +11927,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-base32" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-base32" } }, "base32": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base32//:base32", - "name": "ape~1.0.0-beta.7~_repo_rules~base32" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-base32//:base32", + "name": "ape~1.0.0-beta.11~_repo_rules~base32" } }, "cosmos-base64": { @@ -11864,15 +11949,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-base64" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-base64" } }, "base64": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-base64//:base64", - "name": "ape~1.0.0-beta.7~_repo_rules~base64" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-base64//:base64", + "name": "ape~1.0.0-beta.11~_repo_rules~base64" } }, "cosmos-basename": { @@ -11886,15 +11971,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-basename" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-basename" } }, "basename": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basename//:basename", - "name": "ape~1.0.0-beta.7~_repo_rules~basename" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-basename//:basename", + "name": "ape~1.0.0-beta.11~_repo_rules~basename" } }, "cosmos-basenc": { @@ -11908,15 +11993,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-basenc" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-basenc" } }, "basenc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-basenc//:basenc", - "name": "ape~1.0.0-beta.7~_repo_rules~basenc" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-basenc//:basenc", + "name": "ape~1.0.0-beta.11~_repo_rules~basenc" } }, "cosmos-bash": { @@ -11930,15 +12015,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-bash" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-bash" } }, "bash": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bash//:bash", - "name": "ape~1.0.0-beta.7~_repo_rules~bash" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-bash//:bash", + "name": "ape~1.0.0-beta.11~_repo_rules~bash" } }, "cosmos-berry": { @@ -11952,15 +12037,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-berry" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-berry" } }, "berry": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-berry//:berry", - "name": "ape~1.0.0-beta.7~_repo_rules~berry" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-berry//:berry", + "name": "ape~1.0.0-beta.11~_repo_rules~berry" } }, "cosmos-brotli": { @@ -11974,15 +12059,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-brotli" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-brotli" } }, "brotli": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-brotli//:brotli", - "name": "ape~1.0.0-beta.7~_repo_rules~brotli" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-brotli//:brotli", + "name": "ape~1.0.0-beta.11~_repo_rules~brotli" } }, "cosmos-bzip2": { @@ -11996,15 +12081,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-bzip2" } }, "bzip2": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-bzip2//:bzip2", - "name": "ape~1.0.0-beta.7~_repo_rules~bzip2" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-bzip2//:bzip2", + "name": "ape~1.0.0-beta.11~_repo_rules~bzip2" } }, "cosmos-cat": { @@ -12018,15 +12103,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cat" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cat" } }, "cat": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cat//:cat", - "name": "ape~1.0.0-beta.7~_repo_rules~cat" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cat//:cat", + "name": "ape~1.0.0-beta.11~_repo_rules~cat" } }, "cosmos-chcon": { @@ -12040,15 +12125,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chcon" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chcon" } }, "chcon": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chcon//:chcon", - "name": "ape~1.0.0-beta.7~_repo_rules~chcon" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chcon//:chcon", + "name": "ape~1.0.0-beta.11~_repo_rules~chcon" } }, "cosmos-chgrp": { @@ -12062,15 +12147,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chgrp" } }, "chgrp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chgrp//:chgrp", - "name": "ape~1.0.0-beta.7~_repo_rules~chgrp" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chgrp//:chgrp", + "name": "ape~1.0.0-beta.11~_repo_rules~chgrp" } }, "cosmos-chown": { @@ -12084,15 +12169,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chown" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chown" } }, "chown": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chown//:chown", - "name": "ape~1.0.0-beta.7~_repo_rules~chown" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chown//:chown", + "name": "ape~1.0.0-beta.11~_repo_rules~chown" } }, "cosmos-chroot": { @@ -12106,15 +12191,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-chroot" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chroot" } }, "chroot": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chroot//:chroot", - "name": "ape~1.0.0-beta.7~_repo_rules~chroot" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chroot//:chroot", + "name": "ape~1.0.0-beta.11~_repo_rules~chroot" } }, "cosmos-cksum": { @@ -12128,15 +12213,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cksum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cksum" } }, "cksum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cksum//:cksum", - "name": "ape~1.0.0-beta.7~_repo_rules~cksum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cksum//:cksum", + "name": "ape~1.0.0-beta.11~_repo_rules~cksum" } }, "cosmos-clang-format": { @@ -12150,15 +12235,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-clang-format" } }, "clang-format": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-clang-format//:clang-format", - "name": "ape~1.0.0-beta.7~_repo_rules~clang-format" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-clang-format//:clang-format", + "name": "ape~1.0.0-beta.11~_repo_rules~clang-format" } }, "cosmos-cmp": { @@ -12172,15 +12257,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cmp" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cmp" } }, "cmp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cmp//:cmp", - "name": "ape~1.0.0-beta.7~_repo_rules~cmp" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cmp//:cmp", + "name": "ape~1.0.0-beta.11~_repo_rules~cmp" } }, "cosmos-comm": { @@ -12194,15 +12279,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-comm" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-comm" } }, "comm": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-comm//:comm", - "name": "ape~1.0.0-beta.7~_repo_rules~comm" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-comm//:comm", + "name": "ape~1.0.0-beta.11~_repo_rules~comm" } }, "cosmos-cpuid": { @@ -12216,15 +12301,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cpuid" } }, "cpuid": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cpuid//:cpuid", - "name": "ape~1.0.0-beta.7~_repo_rules~cpuid" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cpuid//:cpuid", + "name": "ape~1.0.0-beta.11~_repo_rules~cpuid" } }, "cosmos-csplit": { @@ -12238,15 +12323,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-csplit" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-csplit" } }, "csplit": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-csplit//:csplit", - "name": "ape~1.0.0-beta.7~_repo_rules~csplit" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-csplit//:csplit", + "name": "ape~1.0.0-beta.11~_repo_rules~csplit" } }, "cosmos-ctags": { @@ -12260,15 +12345,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ctags" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ctags" } }, "ctags": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ctags//:ctags", - "name": "ape~1.0.0-beta.7~_repo_rules~ctags" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ctags//:ctags", + "name": "ape~1.0.0-beta.11~_repo_rules~ctags" } }, "cosmos-curl": { @@ -12282,15 +12367,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-curl" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-curl" } }, "curl": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-curl//:curl", - "name": "ape~1.0.0-beta.7~_repo_rules~curl" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-curl//:curl", + "name": "ape~1.0.0-beta.11~_repo_rules~curl" } }, "cosmos-cut": { @@ -12304,15 +12389,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-cut" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cut" } }, "cut": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cut//:cut", - "name": "ape~1.0.0-beta.7~_repo_rules~cut" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cut//:cut", + "name": "ape~1.0.0-beta.11~_repo_rules~cut" } }, "cosmos-dash": { @@ -12326,15 +12411,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dash" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dash" } }, "dash": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dash//:dash", - "name": "ape~1.0.0-beta.7~_repo_rules~dash" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dash//:dash", + "name": "ape~1.0.0-beta.11~_repo_rules~dash" } }, "cosmos-datasette": { @@ -12348,15 +12433,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-datasette" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-datasette" } }, "datasette": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-datasette//:datasette", - "name": "ape~1.0.0-beta.7~_repo_rules~datasette" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-datasette//:datasette", + "name": "ape~1.0.0-beta.11~_repo_rules~datasette" } }, "cosmos-date": { @@ -12370,15 +12455,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-date" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-date" } }, "date": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-date//:date", - "name": "ape~1.0.0-beta.7~_repo_rules~date" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-date//:date", + "name": "ape~1.0.0-beta.11~_repo_rules~date" } }, "cosmos-df": { @@ -12392,15 +12477,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-df" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-df" } }, "df": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-df//:df", - "name": "ape~1.0.0-beta.7~_repo_rules~df" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-df//:df", + "name": "ape~1.0.0-beta.11~_repo_rules~df" } }, "cosmos-dir": { @@ -12414,15 +12499,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dir" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dir" } }, "dir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dir//:dir", - "name": "ape~1.0.0-beta.7~_repo_rules~dir" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dir//:dir", + "name": "ape~1.0.0-beta.11~_repo_rules~dir" } }, "cosmos-dircolors": { @@ -12436,15 +12521,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dircolors" } }, "dircolors": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dircolors//:dircolors", - "name": "ape~1.0.0-beta.7~_repo_rules~dircolors" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dircolors//:dircolors", + "name": "ape~1.0.0-beta.11~_repo_rules~dircolors" } }, "cosmos-dirname": { @@ -12458,15 +12543,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-dirname" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dirname" } }, "dirname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dirname//:dirname", - "name": "ape~1.0.0-beta.7~_repo_rules~dirname" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dirname//:dirname", + "name": "ape~1.0.0-beta.11~_repo_rules~dirname" } }, "cosmos-diff": { @@ -12480,15 +12565,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-diff" } }, "diff": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff//:diff", - "name": "ape~1.0.0-beta.7~_repo_rules~diff" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-diff//:diff", + "name": "ape~1.0.0-beta.11~_repo_rules~diff" } }, "cosmos-diff3": { @@ -12502,15 +12587,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-diff3" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-diff3" } }, "diff3": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-diff3//:diff3", - "name": "ape~1.0.0-beta.7~_repo_rules~diff3" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-diff3//:diff3", + "name": "ape~1.0.0-beta.11~_repo_rules~diff3" } }, "cosmos-du": { @@ -12524,15 +12609,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-du" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-du" } }, "du": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-du//:du", - "name": "ape~1.0.0-beta.7~_repo_rules~du" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-du//:du", + "name": "ape~1.0.0-beta.11~_repo_rules~du" } }, "cosmos-emacs": { @@ -12546,15 +12631,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacs" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-emacs" } }, "emacs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacs//:emacs", - "name": "ape~1.0.0-beta.7~_repo_rules~emacs" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-emacs//:emacs", + "name": "ape~1.0.0-beta.11~_repo_rules~emacs" } }, "cosmos-emacsclient": { @@ -12568,15 +12653,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-emacsclient" } }, "emacsclient": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-emacsclient//:emacsclient", - "name": "ape~1.0.0-beta.7~_repo_rules~emacsclient" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-emacsclient//:emacsclient", + "name": "ape~1.0.0-beta.11~_repo_rules~emacsclient" } }, "cosmos-env": { @@ -12590,15 +12675,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-env" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-env" } }, "env": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-env//:env", - "name": "ape~1.0.0-beta.7~_repo_rules~env" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-env//:env", + "name": "ape~1.0.0-beta.11~_repo_rules~env" } }, "cosmos-expand": { @@ -12612,15 +12697,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-expand" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-expand" } }, "expand": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expand//:expand", - "name": "ape~1.0.0-beta.7~_repo_rules~expand" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-expand//:expand", + "name": "ape~1.0.0-beta.11~_repo_rules~expand" } }, "cosmos-expr": { @@ -12634,15 +12719,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-expr" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-expr" } }, "expr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-expr//:expr", - "name": "ape~1.0.0-beta.7~_repo_rules~expr" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-expr//:expr", + "name": "ape~1.0.0-beta.11~_repo_rules~expr" } }, "cosmos-factor": { @@ -12656,15 +12741,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-factor" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-factor" } }, "factor": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-factor//:factor", - "name": "ape~1.0.0-beta.7~_repo_rules~factor" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-factor//:factor", + "name": "ape~1.0.0-beta.11~_repo_rules~factor" } }, "cosmos-false": { @@ -12678,15 +12763,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-false" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-false" } }, "false": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-false//:false", - "name": "ape~1.0.0-beta.7~_repo_rules~false" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-false//:false", + "name": "ape~1.0.0-beta.11~_repo_rules~false" } }, "cosmos-find": { @@ -12700,15 +12785,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-find" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-find" } }, "find": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-find//:find", - "name": "ape~1.0.0-beta.7~_repo_rules~find" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-find//:find", + "name": "ape~1.0.0-beta.11~_repo_rules~find" } }, "cosmos-fmt": { @@ -12722,15 +12807,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-fmt" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-fmt" } }, "fmt": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fmt//:fmt", - "name": "ape~1.0.0-beta.7~_repo_rules~fmt" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-fmt//:fmt", + "name": "ape~1.0.0-beta.11~_repo_rules~fmt" } }, "cosmos-fold": { @@ -12744,15 +12829,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-fold" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-fold" } }, "fold": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-fold//:fold", - "name": "ape~1.0.0-beta.7~_repo_rules~fold" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-fold//:fold", + "name": "ape~1.0.0-beta.11~_repo_rules~fold" } }, "cosmos-gmake": { @@ -12766,15 +12851,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-gmake" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-gmake" } }, "gmake": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gmake//:gmake", - "name": "ape~1.0.0-beta.7~_repo_rules~gmake" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-gmake//:gmake", + "name": "ape~1.0.0-beta.11~_repo_rules~gmake" } }, "cosmos-greenbean": { @@ -12788,15 +12873,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-greenbean" } }, "greenbean": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-greenbean//:greenbean", - "name": "ape~1.0.0-beta.7~_repo_rules~greenbean" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-greenbean//:greenbean", + "name": "ape~1.0.0-beta.11~_repo_rules~greenbean" } }, "cosmos-grep": { @@ -12810,15 +12895,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-grep" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-grep" } }, "grep": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-grep//:grep", - "name": "ape~1.0.0-beta.7~_repo_rules~grep" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-grep//:grep", + "name": "ape~1.0.0-beta.11~_repo_rules~grep" } }, "cosmos-groups": { @@ -12832,15 +12917,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-groups" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-groups" } }, "groups": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-groups//:groups", - "name": "ape~1.0.0-beta.7~_repo_rules~groups" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-groups//:groups", + "name": "ape~1.0.0-beta.11~_repo_rules~groups" } }, "cosmos-head": { @@ -12854,15 +12939,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-head" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-head" } }, "head": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-head//:head", - "name": "ape~1.0.0-beta.7~_repo_rules~head" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-head//:head", + "name": "ape~1.0.0-beta.11~_repo_rules~head" } }, "cosmos-id": { @@ -12876,15 +12961,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-id" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-id" } }, "id": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-id//:id", - "name": "ape~1.0.0-beta.7~_repo_rules~id" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-id//:id", + "name": "ape~1.0.0-beta.11~_repo_rules~id" } }, "cosmos-install": { @@ -12898,15 +12983,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-install" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-install" } }, "install": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-install//:install", - "name": "ape~1.0.0-beta.7~_repo_rules~install" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-install//:install", + "name": "ape~1.0.0-beta.11~_repo_rules~install" } }, "cosmos-join": { @@ -12920,15 +13005,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-join" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-join" } }, "join": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-join//:join", - "name": "ape~1.0.0-beta.7~_repo_rules~join" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-join//:join", + "name": "ape~1.0.0-beta.11~_repo_rules~join" } }, "cosmos-kill": { @@ -12942,15 +13027,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-kill" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-kill" } }, "kill": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-kill//:kill", - "name": "ape~1.0.0-beta.7~_repo_rules~kill" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-kill//:kill", + "name": "ape~1.0.0-beta.11~_repo_rules~kill" } }, "cosmos-less": { @@ -12964,15 +13049,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-less" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-less" } }, "less": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-less//:less", - "name": "ape~1.0.0-beta.7~_repo_rules~less" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-less//:less", + "name": "ape~1.0.0-beta.11~_repo_rules~less" } }, "cosmos-life": { @@ -12986,15 +13071,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-life" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-life" } }, "life": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-life//:life", - "name": "ape~1.0.0-beta.7~_repo_rules~life" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-life//:life", + "name": "ape~1.0.0-beta.11~_repo_rules~life" } }, "cosmos-link": { @@ -13008,15 +13093,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-link" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-link" } }, "link": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-link//:link", - "name": "ape~1.0.0-beta.7~_repo_rules~link" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-link//:link", + "name": "ape~1.0.0-beta.11~_repo_rules~link" } }, "cosmos-links": { @@ -13030,15 +13115,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-links" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-links" } }, "links": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-links//:links", - "name": "ape~1.0.0-beta.7~_repo_rules~links" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-links//:links", + "name": "ape~1.0.0-beta.11~_repo_rules~links" } }, "cosmos-ln": { @@ -13052,15 +13137,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ln" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ln" } }, "ln": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ln//:ln", - "name": "ape~1.0.0-beta.7~_repo_rules~ln" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ln//:ln", + "name": "ape~1.0.0-beta.11~_repo_rules~ln" } }, "cosmos-locate": { @@ -13074,15 +13159,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-locate" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-locate" } }, "locate": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-locate//:locate", - "name": "ape~1.0.0-beta.7~_repo_rules~locate" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-locate//:locate", + "name": "ape~1.0.0-beta.11~_repo_rules~locate" } }, "cosmos-logname": { @@ -13096,15 +13181,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-logname" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-logname" } }, "logname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-logname//:logname", - "name": "ape~1.0.0-beta.7~_repo_rules~logname" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-logname//:logname", + "name": "ape~1.0.0-beta.11~_repo_rules~logname" } }, "cosmos-ls": { @@ -13118,15 +13203,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ls" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ls" } }, "ls": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ls//:ls", - "name": "ape~1.0.0-beta.7~_repo_rules~ls" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ls//:ls", + "name": "ape~1.0.0-beta.11~_repo_rules~ls" } }, "cosmos-lua": { @@ -13140,15 +13225,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-lua" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-lua" } }, "lua": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lua//:lua", - "name": "ape~1.0.0-beta.7~_repo_rules~lua" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-lua//:lua", + "name": "ape~1.0.0-beta.11~_repo_rules~lua" } }, "cosmos-lz4": { @@ -13162,15 +13247,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-lz4" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-lz4" } }, "lz4": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-lz4//:lz4", - "name": "ape~1.0.0-beta.7~_repo_rules~lz4" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-lz4//:lz4", + "name": "ape~1.0.0-beta.11~_repo_rules~lz4" } }, "cosmos-make": { @@ -13184,15 +13269,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-make" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-make" } }, "make": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-make//:make", - "name": "ape~1.0.0-beta.7~_repo_rules~make" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-make//:make", + "name": "ape~1.0.0-beta.11~_repo_rules~make" } }, "cosmos-md5sum": { @@ -13206,15 +13291,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-md5sum" } }, "md5sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-md5sum//:md5sum", - "name": "ape~1.0.0-beta.7~_repo_rules~md5sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-md5sum//:md5sum", + "name": "ape~1.0.0-beta.11~_repo_rules~md5sum" } }, "cosmos-mkfifo": { @@ -13228,15 +13313,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mkfifo" } }, "mkfifo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkfifo//:mkfifo", - "name": "ape~1.0.0-beta.7~_repo_rules~mkfifo" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mkfifo//:mkfifo", + "name": "ape~1.0.0-beta.11~_repo_rules~mkfifo" } }, "cosmos-mknod": { @@ -13250,15 +13335,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mknod" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mknod" } }, "mknod": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mknod//:mknod", - "name": "ape~1.0.0-beta.7~_repo_rules~mknod" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mknod//:mknod", + "name": "ape~1.0.0-beta.11~_repo_rules~mknod" } }, "cosmos-mktemp": { @@ -13272,15 +13357,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mktemp" } }, "mktemp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemp//:mktemp", - "name": "ape~1.0.0-beta.7~_repo_rules~mktemp" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mktemp//:mktemp", + "name": "ape~1.0.0-beta.11~_repo_rules~mktemp" } }, "cosmos-mktemper": { @@ -13294,15 +13379,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mktemper" } }, "mktemper": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mktemper//:mktemper", - "name": "ape~1.0.0-beta.7~_repo_rules~mktemper" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mktemper//:mktemper", + "name": "ape~1.0.0-beta.11~_repo_rules~mktemper" } }, "cosmos-nano": { @@ -13316,15 +13401,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nano" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nano" } }, "nano": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nano//:nano", - "name": "ape~1.0.0-beta.7~_repo_rules~nano" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nano//:nano", + "name": "ape~1.0.0-beta.11~_repo_rules~nano" } }, "cosmos-nesemu1": { @@ -13338,15 +13423,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nesemu1" } }, "nesemu1": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nesemu1//:nesemu1", - "name": "ape~1.0.0-beta.7~_repo_rules~nesemu1" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nesemu1//:nesemu1", + "name": "ape~1.0.0-beta.11~_repo_rules~nesemu1" } }, "cosmos-nice": { @@ -13360,15 +13445,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nice" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nice" } }, "nice": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nice//:nice", - "name": "ape~1.0.0-beta.7~_repo_rules~nice" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nice//:nice", + "name": "ape~1.0.0-beta.11~_repo_rules~nice" } }, "cosmos-ninja": { @@ -13382,15 +13467,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ninja" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ninja" } }, "ninja": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ninja//:ninja", - "name": "ape~1.0.0-beta.7~_repo_rules~ninja" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ninja//:ninja", + "name": "ape~1.0.0-beta.11~_repo_rules~ninja" } }, "cosmos-nl": { @@ -13404,15 +13489,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nl" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nl" } }, "nl": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nl//:nl", - "name": "ape~1.0.0-beta.7~_repo_rules~nl" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nl//:nl", + "name": "ape~1.0.0-beta.11~_repo_rules~nl" } }, "cosmos-nohup": { @@ -13426,15 +13511,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nohup" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nohup" } }, "nohup": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nohup//:nohup", - "name": "ape~1.0.0-beta.7~_repo_rules~nohup" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nohup//:nohup", + "name": "ape~1.0.0-beta.11~_repo_rules~nohup" } }, "cosmos-nproc": { @@ -13448,15 +13533,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-nproc" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-nproc" } }, "nproc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-nproc//:nproc", - "name": "ape~1.0.0-beta.7~_repo_rules~nproc" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nproc//:nproc", + "name": "ape~1.0.0-beta.11~_repo_rules~nproc" } }, "cosmos-numfmt": { @@ -13470,15 +13555,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-numfmt" } }, "numfmt": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-numfmt//:numfmt", - "name": "ape~1.0.0-beta.7~_repo_rules~numfmt" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-numfmt//:numfmt", + "name": "ape~1.0.0-beta.11~_repo_rules~numfmt" } }, "cosmos-od": { @@ -13492,15 +13577,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-od" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-od" } }, "od": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-od//:od", - "name": "ape~1.0.0-beta.7~_repo_rules~od" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-od//:od", + "name": "ape~1.0.0-beta.11~_repo_rules~od" } }, "cosmos-paste": { @@ -13514,15 +13599,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-paste" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-paste" } }, "paste": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-paste//:paste", - "name": "ape~1.0.0-beta.7~_repo_rules~paste" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-paste//:paste", + "name": "ape~1.0.0-beta.11~_repo_rules~paste" } }, "cosmos-patch": { @@ -13536,15 +13621,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-patch" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-patch" } }, "patch": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-patch//:patch", - "name": "ape~1.0.0-beta.7~_repo_rules~patch" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-patch//:patch", + "name": "ape~1.0.0-beta.11~_repo_rules~patch" } }, "cosmos-pathchk": { @@ -13558,15 +13643,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pathchk" } }, "pathchk": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pathchk//:pathchk", - "name": "ape~1.0.0-beta.7~_repo_rules~pathchk" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pathchk//:pathchk", + "name": "ape~1.0.0-beta.11~_repo_rules~pathchk" } }, "cosmos-pinky": { @@ -13580,15 +13665,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pinky" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pinky" } }, "pinky": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pinky//:pinky", - "name": "ape~1.0.0-beta.7~_repo_rules~pinky" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pinky//:pinky", + "name": "ape~1.0.0-beta.11~_repo_rules~pinky" } }, "cosmos-pledge": { @@ -13602,15 +13687,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pledge" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pledge" } }, "pledge": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pledge//:pledge", - "name": "ape~1.0.0-beta.7~_repo_rules~pledge" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pledge//:pledge", + "name": "ape~1.0.0-beta.11~_repo_rules~pledge" } }, "cosmos-pr": { @@ -13624,15 +13709,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pr" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pr" } }, "pr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pr//:pr", - "name": "ape~1.0.0-beta.7~_repo_rules~pr" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pr//:pr", + "name": "ape~1.0.0-beta.11~_repo_rules~pr" } }, "cosmos-printenv": { @@ -13646,15 +13731,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-printenv" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-printenv" } }, "printenv": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printenv//:printenv", - "name": "ape~1.0.0-beta.7~_repo_rules~printenv" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printenv//:printenv", + "name": "ape~1.0.0-beta.11~_repo_rules~printenv" } }, "cosmos-printimage": { @@ -13668,15 +13753,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-printimage" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-printimage" } }, "printimage": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printimage//:printimage", - "name": "ape~1.0.0-beta.7~_repo_rules~printimage" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printimage//:printimage", + "name": "ape~1.0.0-beta.11~_repo_rules~printimage" } }, "cosmos-ptx": { @@ -13690,15 +13775,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ptx" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ptx" } }, "ptx": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ptx//:ptx", - "name": "ape~1.0.0-beta.7~_repo_rules~ptx" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ptx//:ptx", + "name": "ape~1.0.0-beta.11~_repo_rules~ptx" } }, "cosmos-pwd": { @@ -13712,15 +13797,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pwd" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pwd" } }, "pwd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pwd//:pwd", - "name": "ape~1.0.0-beta.7~_repo_rules~pwd" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pwd//:pwd", + "name": "ape~1.0.0-beta.11~_repo_rules~pwd" } }, "cosmos-pypack1": { @@ -13734,15 +13819,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pypack1" } }, "pypack1": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pypack1//:pypack1", - "name": "ape~1.0.0-beta.7~_repo_rules~pypack1" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pypack1//:pypack1", + "name": "ape~1.0.0-beta.11~_repo_rules~pypack1" } }, "cosmos-python": { @@ -13756,15 +13841,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-python" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-python" } }, "python": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-python//:python", - "name": "ape~1.0.0-beta.7~_repo_rules~python" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-python//:python", + "name": "ape~1.0.0-beta.11~_repo_rules~python" } }, "cosmos-qjs": { @@ -13778,15 +13863,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-qjs" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-qjs" } }, "qjs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-qjs//:qjs", - "name": "ape~1.0.0-beta.7~_repo_rules~qjs" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-qjs//:qjs", + "name": "ape~1.0.0-beta.11~_repo_rules~qjs" } }, "cosmos-readlink": { @@ -13800,15 +13885,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-readlink" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-readlink" } }, "readlink": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-readlink//:readlink", - "name": "ape~1.0.0-beta.7~_repo_rules~readlink" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-readlink//:readlink", + "name": "ape~1.0.0-beta.11~_repo_rules~readlink" } }, "cosmos-realpath": { @@ -13822,15 +13907,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-realpath" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-realpath" } }, "realpath": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-realpath//:realpath", - "name": "ape~1.0.0-beta.7~_repo_rules~realpath" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-realpath//:realpath", + "name": "ape~1.0.0-beta.11~_repo_rules~realpath" } }, "cosmos-redbean": { @@ -13844,15 +13929,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-redbean" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-redbean" } }, "redbean": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-redbean//:redbean", - "name": "ape~1.0.0-beta.7~_repo_rules~redbean" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-redbean//:redbean", + "name": "ape~1.0.0-beta.11~_repo_rules~redbean" } }, "cosmos-rmdir": { @@ -13866,15 +13951,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-rmdir" } }, "rmdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rmdir//:rmdir", - "name": "ape~1.0.0-beta.7~_repo_rules~rmdir" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rmdir//:rmdir", + "name": "ape~1.0.0-beta.11~_repo_rules~rmdir" } }, "cosmos-rsync": { @@ -13888,15 +13973,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-rsync" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-rsync" } }, "rsync": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rsync//:rsync", - "name": "ape~1.0.0-beta.7~_repo_rules~rsync" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rsync//:rsync", + "name": "ape~1.0.0-beta.11~_repo_rules~rsync" } }, "cosmos-runcon": { @@ -13910,15 +13995,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-runcon" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-runcon" } }, "runcon": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-runcon//:runcon", - "name": "ape~1.0.0-beta.7~_repo_rules~runcon" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-runcon//:runcon", + "name": "ape~1.0.0-beta.11~_repo_rules~runcon" } }, "cosmos-script": { @@ -13932,15 +14017,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-script" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-script" } }, "script": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-script//:script", - "name": "ape~1.0.0-beta.7~_repo_rules~script" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-script//:script", + "name": "ape~1.0.0-beta.11~_repo_rules~script" } }, "cosmos-sdiff": { @@ -13954,15 +14039,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sdiff" } }, "sdiff": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sdiff//:sdiff", - "name": "ape~1.0.0-beta.7~_repo_rules~sdiff" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sdiff//:sdiff", + "name": "ape~1.0.0-beta.11~_repo_rules~sdiff" } }, "cosmos-sed": { @@ -13976,15 +14061,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sed" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sed" } }, "sed": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sed//:sed", - "name": "ape~1.0.0-beta.7~_repo_rules~sed" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sed//:sed", + "name": "ape~1.0.0-beta.11~_repo_rules~sed" } }, "cosmos-seq": { @@ -13998,15 +14083,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-seq" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-seq" } }, "seq": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-seq//:seq", - "name": "ape~1.0.0-beta.7~_repo_rules~seq" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-seq//:seq", + "name": "ape~1.0.0-beta.11~_repo_rules~seq" } }, "cosmos-sha1sum": { @@ -14020,15 +14105,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha1sum" } }, "sha1sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha1sum//:sha1sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha1sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha1sum//:sha1sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha1sum" } }, "cosmos-sha224sum": { @@ -14042,15 +14127,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha224sum" } }, "sha224sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha224sum//:sha224sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha224sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha224sum//:sha224sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha224sum" } }, "cosmos-sha256sum": { @@ -14064,15 +14149,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha256sum" } }, "sha256sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha256sum//:sha256sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha256sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha256sum//:sha256sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha256sum" } }, "cosmos-sha384sum": { @@ -14086,15 +14171,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha384sum" } }, "sha384sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha384sum//:sha384sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha384sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha384sum//:sha384sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha384sum" } }, "cosmos-sha512sum": { @@ -14108,15 +14193,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha512sum" } }, "sha512sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sha512sum//:sha512sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sha512sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha512sum//:sha512sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha512sum" } }, "cosmos-shred": { @@ -14130,15 +14215,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-shred" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-shred" } }, "shred": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shred//:shred", - "name": "ape~1.0.0-beta.7~_repo_rules~shred" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-shred//:shred", + "name": "ape~1.0.0-beta.11~_repo_rules~shred" } }, "cosmos-shuf": { @@ -14152,15 +14237,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-shuf" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-shuf" } }, "shuf": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-shuf//:shuf", - "name": "ape~1.0.0-beta.7~_repo_rules~shuf" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-shuf//:shuf", + "name": "ape~1.0.0-beta.11~_repo_rules~shuf" } }, "cosmos-sleep": { @@ -14174,15 +14259,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sleep" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sleep" } }, "sleep": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sleep//:sleep", - "name": "ape~1.0.0-beta.7~_repo_rules~sleep" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sleep//:sleep", + "name": "ape~1.0.0-beta.11~_repo_rules~sleep" } }, "cosmos-sort": { @@ -14196,15 +14281,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sort" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sort" } }, "sort": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sort//:sort", - "name": "ape~1.0.0-beta.7~_repo_rules~sort" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sort//:sort", + "name": "ape~1.0.0-beta.11~_repo_rules~sort" } }, "cosmos-split": { @@ -14218,15 +14303,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-split" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-split" } }, "split": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-split//:split", - "name": "ape~1.0.0-beta.7~_repo_rules~split" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-split//:split", + "name": "ape~1.0.0-beta.11~_repo_rules~split" } }, "cosmos-sqlite3": { @@ -14240,15 +14325,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sqlite3" } }, "sqlite3": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sqlite3//:sqlite3", - "name": "ape~1.0.0-beta.7~_repo_rules~sqlite3" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sqlite3//:sqlite3", + "name": "ape~1.0.0-beta.11~_repo_rules~sqlite3" } }, "cosmos-stat": { @@ -14262,15 +14347,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-stat" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-stat" } }, "stat": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stat//:stat", - "name": "ape~1.0.0-beta.7~_repo_rules~stat" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-stat//:stat", + "name": "ape~1.0.0-beta.11~_repo_rules~stat" } }, "cosmos-stty": { @@ -14284,15 +14369,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-stty" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-stty" } }, "stty": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-stty//:stty", - "name": "ape~1.0.0-beta.7~_repo_rules~stty" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-stty//:stty", + "name": "ape~1.0.0-beta.11~_repo_rules~stty" } }, "cosmos-sum": { @@ -14306,15 +14391,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sum" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sum" } }, "sum": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sum//:sum", - "name": "ape~1.0.0-beta.7~_repo_rules~sum" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sum//:sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sum" } }, "cosmos-sync": { @@ -14328,15 +14413,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-sync" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sync" } }, "sync": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-sync//:sync", - "name": "ape~1.0.0-beta.7~_repo_rules~sync" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sync//:sync", + "name": "ape~1.0.0-beta.11~_repo_rules~sync" } }, "cosmos-tac": { @@ -14350,15 +14435,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tac" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tac" } }, "tac": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tac//:tac", - "name": "ape~1.0.0-beta.7~_repo_rules~tac" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tac//:tac", + "name": "ape~1.0.0-beta.11~_repo_rules~tac" } }, "cosmos-tail": { @@ -14372,15 +14457,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tail" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tail" } }, "tail": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tail//:tail", - "name": "ape~1.0.0-beta.7~_repo_rules~tail" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tail//:tail", + "name": "ape~1.0.0-beta.11~_repo_rules~tail" } }, "cosmos-tar": { @@ -14394,15 +14479,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tar" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tar" } }, "tar": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tar//:tar", - "name": "ape~1.0.0-beta.7~_repo_rules~tar" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tar//:tar", + "name": "ape~1.0.0-beta.11~_repo_rules~tar" } }, "cosmos-tee": { @@ -14416,15 +14501,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tee" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tee" } }, "tee": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tee//:tee", - "name": "ape~1.0.0-beta.7~_repo_rules~tee" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tee//:tee", + "name": "ape~1.0.0-beta.11~_repo_rules~tee" } }, "cosmos-test": { @@ -14438,15 +14523,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-test" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-test" } }, "test": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-test//:test", - "name": "ape~1.0.0-beta.7~_repo_rules~test" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-test//:test", + "name": "ape~1.0.0-beta.11~_repo_rules~test" } }, "cosmos-tidy": { @@ -14460,15 +14545,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tidy" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tidy" } }, "tidy": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tidy//:tidy", - "name": "ape~1.0.0-beta.7~_repo_rules~tidy" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tidy//:tidy", + "name": "ape~1.0.0-beta.11~_repo_rules~tidy" } }, "cosmos-timeout": { @@ -14482,15 +14567,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-timeout" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-timeout" } }, "timeout": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-timeout//:timeout", - "name": "ape~1.0.0-beta.7~_repo_rules~timeout" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-timeout//:timeout", + "name": "ape~1.0.0-beta.11~_repo_rules~timeout" } }, "cosmos-tmux": { @@ -14504,15 +14589,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tmux" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tmux" } }, "tmux": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tmux//:tmux", - "name": "ape~1.0.0-beta.7~_repo_rules~tmux" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tmux//:tmux", + "name": "ape~1.0.0-beta.11~_repo_rules~tmux" } }, "cosmos-touch": { @@ -14526,15 +14611,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-touch" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-touch" } }, "touch": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-touch//:touch", - "name": "ape~1.0.0-beta.7~_repo_rules~touch" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-touch//:touch", + "name": "ape~1.0.0-beta.11~_repo_rules~touch" } }, "cosmos-tr": { @@ -14548,15 +14633,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tr" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tr" } }, "tr": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tr//:tr", - "name": "ape~1.0.0-beta.7~_repo_rules~tr" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tr//:tr", + "name": "ape~1.0.0-beta.11~_repo_rules~tr" } }, "cosmos-tree": { @@ -14570,15 +14655,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tree" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tree" } }, "tree": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tree//:tree", - "name": "ape~1.0.0-beta.7~_repo_rules~tree" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tree//:tree", + "name": "ape~1.0.0-beta.11~_repo_rules~tree" } }, "cosmos-true": { @@ -14592,15 +14677,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-true" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-true" } }, "true": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-true//:true", - "name": "ape~1.0.0-beta.7~_repo_rules~true" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-true//:true", + "name": "ape~1.0.0-beta.11~_repo_rules~true" } }, "cosmos-truncate": { @@ -14614,15 +14699,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-truncate" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-truncate" } }, "truncate": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-truncate//:truncate", - "name": "ape~1.0.0-beta.7~_repo_rules~truncate" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-truncate//:truncate", + "name": "ape~1.0.0-beta.11~_repo_rules~truncate" } }, "cosmos-tsort": { @@ -14636,15 +14721,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tsort" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tsort" } }, "tsort": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tsort//:tsort", - "name": "ape~1.0.0-beta.7~_repo_rules~tsort" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tsort//:tsort", + "name": "ape~1.0.0-beta.11~_repo_rules~tsort" } }, "cosmos-tty": { @@ -14658,15 +14743,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-tty" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-tty" } }, "tty": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-tty//:tty", - "name": "ape~1.0.0-beta.7~_repo_rules~tty" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tty//:tty", + "name": "ape~1.0.0-beta.11~_repo_rules~tty" } }, "cosmos-ttyinfo": { @@ -14680,15 +14765,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-ttyinfo" } }, "ttyinfo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-ttyinfo//:ttyinfo", - "name": "ape~1.0.0-beta.7~_repo_rules~ttyinfo" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ttyinfo//:ttyinfo", + "name": "ape~1.0.0-beta.11~_repo_rules~ttyinfo" } }, "cosmos-unbourne": { @@ -14702,15 +14787,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-unbourne" } }, "unbourne": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unbourne//:unbourne", - "name": "ape~1.0.0-beta.7~_repo_rules~unbourne" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unbourne//:unbourne", + "name": "ape~1.0.0-beta.11~_repo_rules~unbourne" } }, "cosmos-unexpand": { @@ -14724,15 +14809,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-unexpand" } }, "unexpand": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unexpand//:unexpand", - "name": "ape~1.0.0-beta.7~_repo_rules~unexpand" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unexpand//:unexpand", + "name": "ape~1.0.0-beta.11~_repo_rules~unexpand" } }, "cosmos-uniq": { @@ -14746,15 +14831,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-uniq" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-uniq" } }, "uniq": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uniq//:uniq", - "name": "ape~1.0.0-beta.7~_repo_rules~uniq" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uniq//:uniq", + "name": "ape~1.0.0-beta.11~_repo_rules~uniq" } }, "cosmos-unlink": { @@ -14768,15 +14853,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unlink" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-unlink" } }, "unlink": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unlink//:unlink", - "name": "ape~1.0.0-beta.7~_repo_rules~unlink" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unlink//:unlink", + "name": "ape~1.0.0-beta.11~_repo_rules~unlink" } }, "cosmos-unzip": { @@ -14790,15 +14875,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-unzip" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-unzip" } }, "unzip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-unzip//:unzip", - "name": "ape~1.0.0-beta.7~_repo_rules~unzip" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unzip//:unzip", + "name": "ape~1.0.0-beta.11~_repo_rules~unzip" } }, "cosmos-uptime": { @@ -14812,15 +14897,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-uptime" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-uptime" } }, "uptime": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uptime//:uptime", - "name": "ape~1.0.0-beta.7~_repo_rules~uptime" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uptime//:uptime", + "name": "ape~1.0.0-beta.11~_repo_rules~uptime" } }, "cosmos-users": { @@ -14834,15 +14919,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-users" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-users" } }, "users": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-users//:users", - "name": "ape~1.0.0-beta.7~_repo_rules~users" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-users//:users", + "name": "ape~1.0.0-beta.11~_repo_rules~users" } }, "cosmos-vdir": { @@ -14856,15 +14941,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-vdir" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-vdir" } }, "vdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vdir//:vdir", - "name": "ape~1.0.0-beta.7~_repo_rules~vdir" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-vdir//:vdir", + "name": "ape~1.0.0-beta.11~_repo_rules~vdir" } }, "cosmos-verynice": { @@ -14878,15 +14963,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-verynice" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-verynice" } }, "verynice": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-verynice//:verynice", - "name": "ape~1.0.0-beta.7~_repo_rules~verynice" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-verynice//:verynice", + "name": "ape~1.0.0-beta.11~_repo_rules~verynice" } }, "cosmos-vim": { @@ -14900,15 +14985,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-vim" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-vim" } }, "vim": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-vim//:vim", - "name": "ape~1.0.0-beta.7~_repo_rules~vim" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-vim//:vim", + "name": "ape~1.0.0-beta.11~_repo_rules~vim" } }, "cosmos-wall": { @@ -14922,15 +15007,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wall" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-wall" } }, "wall": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wall//:wall", - "name": "ape~1.0.0-beta.7~_repo_rules~wall" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wall//:wall", + "name": "ape~1.0.0-beta.11~_repo_rules~wall" } }, "cosmos-wc": { @@ -14944,15 +15029,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wc" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-wc" } }, "wc": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wc//:wc", - "name": "ape~1.0.0-beta.7~_repo_rules~wc" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wc//:wc", + "name": "ape~1.0.0-beta.11~_repo_rules~wc" } }, "cosmos-wget": { @@ -14966,15 +15051,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-wget" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-wget" } }, "wget": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-wget//:wget", - "name": "ape~1.0.0-beta.7~_repo_rules~wget" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wget//:wget", + "name": "ape~1.0.0-beta.11~_repo_rules~wget" } }, "cosmos-who": { @@ -14988,15 +15073,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-who" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-who" } }, "who": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-who//:who", - "name": "ape~1.0.0-beta.7~_repo_rules~who" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-who//:who", + "name": "ape~1.0.0-beta.11~_repo_rules~who" } }, "cosmos-whoami": { @@ -15010,15 +15095,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-whoami" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-whoami" } }, "whoami": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-whoami//:whoami", - "name": "ape~1.0.0-beta.7~_repo_rules~whoami" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-whoami//:whoami", + "name": "ape~1.0.0-beta.11~_repo_rules~whoami" } }, "cosmos-xargs": { @@ -15032,15 +15117,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xargs" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-xargs" } }, "xargs": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xargs//:xargs", - "name": "ape~1.0.0-beta.7~_repo_rules~xargs" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-xargs//:xargs", + "name": "ape~1.0.0-beta.11~_repo_rules~xargs" } }, "cosmos-xz": { @@ -15054,15 +15139,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-xz" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-xz" } }, "xz": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-xz//:xz", - "name": "ape~1.0.0-beta.7~_repo_rules~xz" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-xz//:xz", + "name": "ape~1.0.0-beta.11~_repo_rules~xz" } }, "cosmos-yes": { @@ -15076,15 +15161,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-yes" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-yes" } }, "yes": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-yes//:yes", - "name": "ape~1.0.0-beta.7~_repo_rules~yes" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-yes//:yes", + "name": "ape~1.0.0-beta.11~_repo_rules~yes" } }, "cosmos-zip": { @@ -15098,15 +15183,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zip" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-zip" } }, "zip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zip//:zip", - "name": "ape~1.0.0-beta.7~_repo_rules~zip" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zip//:zip", + "name": "ape~1.0.0-beta.11~_repo_rules~zip" } }, "cosmos-zsh": { @@ -15120,15 +15205,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zsh" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-zsh" } }, "zsh": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zsh//:zsh", - "name": "ape~1.0.0-beta.7~_repo_rules~zsh" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zsh//:zsh", + "name": "ape~1.0.0-beta.11~_repo_rules~zsh" } }, "cosmos-zstd": { @@ -15142,15 +15227,15 @@ "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": "ape~1.0.0-beta.7~_repo_rules~cosmos-zstd" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-zstd" } }, "zstd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-zstd//:zstd", - "name": "ape~1.0.0-beta.7~_repo_rules~zstd" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zstd//:zstd", + "name": "ape~1.0.0-beta.11~_repo_rules~zstd" } }, "cosmos-chmod": { @@ -15164,15 +15249,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-chmod" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chmod" } }, "chmod": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-chmod//:chmod", - "name": "ape~1.0.0-beta.7~_repo_rules~chmod" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chmod//:chmod", + "name": "ape~1.0.0-beta.11~_repo_rules~chmod" } }, "cosmos-cp": { @@ -15186,15 +15271,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-cp" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cp" } }, "cp": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-cp//:cp", - "name": "ape~1.0.0-beta.7~_repo_rules~cp" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cp//:cp", + "name": "ape~1.0.0-beta.11~_repo_rules~cp" } }, "cosmos-dd": { @@ -15208,15 +15293,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-dd" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dd" } }, "dd": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-dd//:dd", - "name": "ape~1.0.0-beta.7~_repo_rules~dd" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dd//:dd", + "name": "ape~1.0.0-beta.11~_repo_rules~dd" } }, "cosmos-echo": { @@ -15230,15 +15315,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-echo" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-echo" } }, "echo": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-echo//:echo", - "name": "ape~1.0.0-beta.7~_repo_rules~echo" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-echo//:echo", + "name": "ape~1.0.0-beta.11~_repo_rules~echo" } }, "cosmos-gzip": { @@ -15252,15 +15337,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-gzip" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-gzip" } }, "gzip": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-gzip//:gzip", - "name": "ape~1.0.0-beta.7~_repo_rules~gzip" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-gzip//:gzip", + "name": "ape~1.0.0-beta.11~_repo_rules~gzip" } }, "cosmos-mkdir": { @@ -15274,15 +15359,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mkdir" } }, "mkdir": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mkdir//:mkdir", - "name": "ape~1.0.0-beta.7~_repo_rules~mkdir" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mkdir//:mkdir", + "name": "ape~1.0.0-beta.11~_repo_rules~mkdir" } }, "cosmos-mv": { @@ -15296,15 +15381,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-mv" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mv" } }, "mv": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-mv//:mv", - "name": "ape~1.0.0-beta.7~_repo_rules~mv" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mv//:mv", + "name": "ape~1.0.0-beta.11~_repo_rules~mv" } }, "cosmos-printf": { @@ -15318,15 +15403,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-printf" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-printf" } }, "printf": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-printf//:printf", - "name": "ape~1.0.0-beta.7~_repo_rules~printf" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printf//:printf", + "name": "ape~1.0.0-beta.11~_repo_rules~printf" } }, "cosmos-rm": { @@ -15340,15 +15425,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-rm" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-rm" } }, "rm": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-rm//:rm", - "name": "ape~1.0.0-beta.7~_repo_rules~rm" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rm//:rm", + "name": "ape~1.0.0-beta.11~_repo_rules~rm" } }, "cosmos-uname": { @@ -15362,15 +15447,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-uname" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-uname" } }, "uname": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-uname//:uname", - "name": "ape~1.0.0-beta.7~_repo_rules~uname" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uname//:uname", + "name": "ape~1.0.0-beta.11~_repo_rules~uname" } }, "cosmos-pigz": { @@ -15384,15 +15469,15 @@ "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" ], - "name": "ape~1.0.0-beta.7~_repo_rules~cosmos-pigz" + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pigz" } }, "pigz": { - "bzlFile": "@@ape~1.0.0-beta.7//ape/entrypoint:repository.bzl", + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", "ruleClassName": "entrypoint", "attributes": { - "binary": "@@ape~1.0.0-beta.7~_repo_rules~cosmos-pigz//:pigz", - "name": "ape~1.0.0-beta.7~_repo_rules~pigz" + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pigz//:pigz", + "name": "ape~1.0.0-beta.11~_repo_rules~pigz" } } } diff --git a/e2e/fixture/BUILD.bazel b/e2e/fixture/BUILD.bazel index 0a5e43a..d4d21a0 100644 --- a/e2e/fixture/BUILD.bazel +++ b/e2e/fixture/BUILD.bazel @@ -6,6 +6,7 @@ exports_files( "fixture.tar.bz2", "fixture.tar.gz", "fixture.tar.zst", + "fixture.tar.xz", ], visibility = ["//:__subpackages__"], ) diff --git a/tar/extract/rule.bzl b/tar/extract/rule.bzl index 062cf54..93fe248 100644 --- a/tar/extract/rule.bzl +++ b/tar/extract/rule.bzl @@ -36,14 +36,11 @@ def _name(label): def implementation(ctx): tar = ctx.toolchains["//tar/toolchain/tar:type"] - zstd = ctx.toolchains["@rules_zstd//zstd/toolchain/zstd:type"] - bzip2 = ctx.toolchains["@rules_bzip2//bzip2/toolchain/bzip2:type"] - pigz = ctx.toolchains["@rules_gzip//gzip/toolchain/pigz:type"] tools, env = path(ctx, { "zstd": "@rules_zstd//zstd/toolchain/zstd:type", "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", - "pigz": "@rules_gzip//gzip/toolchain/pigz:type", + "gzip": "@rules_gzip//gzip/toolchain/pigz:type", }) args = ctx.actions.args() diff --git a/tar/path.bzl b/tar/path.bzl index eaf1121..a372ce7 100644 --- a/tar/path.bzl +++ b/tar/path.bzl @@ -1,3 +1,5 @@ +visibility("//...") + def path(ctx, links): tools = [] @@ -12,9 +14,9 @@ def path(ctx, links): ) tools.append(symlink) tools.append(toolchain.run) - + env = { - "PATH": "/usr/bin:/usr/local/bin:{}".format(tools[0].dirname), + "PATH": tools[0].dirname, } return tools, env diff --git a/tar/unpack/rule.bzl b/tar/unpack/rule.bzl index 5506d07..3b0cd42 100644 --- a/tar/unpack/rule.bzl +++ b/tar/unpack/rule.bzl @@ -23,16 +23,13 @@ ATTRS = { def implementation(ctx): tar = ctx.toolchains["//tar/toolchain/tar:type"] - zstd = ctx.toolchains["@rules_zstd//zstd/toolchain/zstd:type"] - bzip2 = ctx.toolchains["@rules_bzip2//bzip2/toolchain/bzip2:type"] - pigz = ctx.toolchains["@rules_gzip//gzip/toolchain/pigz:type"] output_dir = ctx.actions.declare_directory(ctx.attr.name) tools, env = path(ctx, { "zstd": "@rules_zstd//zstd/toolchain/zstd:type", "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", - "pigz": "@rules_gzip//gzip/toolchain/pigz:type", + "gzip": "@rules_gzip//gzip/toolchain/pigz:type", }) args = ctx.actions.args() -- GitLab From 37c211b95744f859ce00475ce9466779e483de03 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 25 Jun 2024 13:15:09 +0100 Subject: [PATCH 3/5] feat: support added for `xz` --- MODULE.bazel | 1 + MODULE.bazel.lock | 105 +++++++++++++++++++++++++++++++++++-- e2e/MODULE.bazel.lock | 105 +++++++++++++++++++++++++++++++++++-- e2e/extract/xz/BUILD.bazel | 40 ++++++++++++++ e2e/fixture/fixture.tar.xz | Bin 0 -> 348 bytes e2e/unpack/xz/BUILD.bazel | 14 +++++ tar/extract/rule.bzl | 7 ++- tar/unpack/rule.bzl | 7 ++- 8 files changed, 269 insertions(+), 10 deletions(-) create mode 100644 e2e/extract/xz/BUILD.bazel create mode 100644 e2e/fixture/fixture.tar.xz create mode 100644 e2e/unpack/xz/BUILD.bazel diff --git a/MODULE.bazel b/MODULE.bazel index be88c45..a68a22e 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -9,6 +9,7 @@ module( bazel_dep(name = "rules_gzip", version = "1.0.0-beta.1") bazel_dep(name = "rules_bzip2", version = "1.0.0-beta.1") bazel_dep(name = "rules_zstd", version = "1.0.0-beta.1") +bazel_dep(name = "rules_xz", version = "1.0.0-beta.1") bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.9") bazel_dep(name = "ape", version = "1.0.0-beta.11") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index a561677..c3b6202 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 3, - "moduleFileHash": "52521da1b9c14123fc132ab71aca158541bc9d4b14588798694fc5380f425873", + "moduleFileHash": "0d85e7fcc1583ee8974a8c60a4e52d3bba1aa59fba1520a98445879d1ce90876", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -32,7 +32,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 15, + "line": 16, "column": 23 }, "imports": { @@ -50,7 +50,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 17, + "line": 18, "column": 15 } } @@ -81,7 +81,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 25, + "line": 26, "column": 9 } } @@ -94,6 +94,7 @@ "rules_gzip": "rules_gzip@1.0.0-beta.1", "rules_bzip2": "rules_bzip2@1.0.0-beta.1", "rules_zstd": "rules_zstd@1.0.0-beta.1", + "rules_xz": "rules_xz@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", @@ -389,6 +390,102 @@ } } }, + "rules_xz@1.0.0-beta.1": { + "name": "rules_xz", + "version": "1.0.0-beta.1", + "key": "rules_xz@1.0.0-beta.1", + "repoName": "rules_xz", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//xz/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_xz@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-xz": "ape-xz", + "xz": "xz" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "xz", + "target": "@ape-xz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_xz@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-xz": "resolved-xz" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//xz/toolchain/xz:type", + "name": "resolved-xz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.11", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_xz~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_xz/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-7h7aMS56GHqqyWIyIcPBO7v6KFDtLDu1LkP50+wnofXihe0p9NoCAHHLjDhenckLHBkx2Ze4z4FX4c9D7cHqoA==", + "strip_prefix": "rules_xz-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "toolchain_utils@1.0.0-beta.9": { "name": "toolchain_utils", "version": "1.0.0-beta.9", diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index d6ec897..3b88323 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -13,7 +13,7 @@ "compatibilityMode": "ERROR" }, "localOverrideHashes": { - "rules_tar": "52521da1b9c14123fc132ab71aca158541bc9d4b14588798694fc5380f425873", + "rules_tar": "0d85e7fcc1583ee8974a8c60a4e52d3bba1aa59fba1520a98445879d1ce90876", "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787" }, "moduleDepGraph": { @@ -2537,7 +2537,7 @@ "usingModule": "rules_tar@_", "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 15, + "line": 16, "column": 23 }, "imports": { @@ -2555,7 +2555,7 @@ "devDependency": false, "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 17, + "line": 18, "column": 15 } } @@ -2586,7 +2586,7 @@ "devDependency": false, "location": { "file": "@@rules_tar~override//:MODULE.bazel", - "line": 25, + "line": 26, "column": 9 } } @@ -2599,6 +2599,7 @@ "rules_gzip": "rules_gzip@1.0.0-beta.1", "rules_bzip2": "rules_bzip2@1.0.0-beta.1", "rules_zstd": "rules_zstd@1.0.0-beta.1", + "rules_xz": "rules_xz@1.0.0-beta.1", "toolchain_utils": "toolchain_utils@1.0.0-beta.9", "ape": "ape@1.0.0-beta.11", "bazel_tools": "bazel_tools@_", @@ -11153,6 +11154,102 @@ } } }, + "rules_xz@1.0.0-beta.1": { + "name": "rules_xz", + "version": "1.0.0-beta.1", + "key": "rules_xz@1.0.0-beta.1", + "repoName": "rules_xz", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//xz/toolchain/..." + ], + "extensionUsages": [ + { + "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", + "extensionName": "toolchain_export", + "usingModule": "rules_xz@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 14, + "column": 23 + }, + "imports": { + "ape-xz": "ape-xz", + "xz": "xz" + }, + "devImports": [], + "tags": [ + { + "tagName": "symlink", + "attributeValues": { + "name": "xz", + "target": "@ape-xz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "//:MODULE.bazel", + "extensionName": "_repo_rules", + "usingModule": "rules_xz@1.0.0-beta.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 0, + "column": 0 + }, + "imports": { + "resolved-xz": "resolved-xz" + }, + "devImports": [], + "tags": [ + { + "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", + "attributeValues": { + "toolchain_type": "//xz/toolchain/xz:type", + "name": "resolved-xz" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_xz/1.0.0-beta.1/MODULE.bazel", + "line": 24, + "column": 9 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_coreutils": "rules_coreutils@1.0.0-beta.1", + "toolchain_utils": "toolchain_utils@1.0.0-beta.9", + "ape": "ape@1.0.0-beta.11", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_xz~1.0.0-beta.1", + "urls": [ + "https://gitlab.arm.com/bazel/rules_xz/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" + ], + "integrity": "sha512-7h7aMS56GHqqyWIyIcPBO7v6KFDtLDu1LkP50+wnofXihe0p9NoCAHHLjDhenckLHBkx2Ze4z4FX4c9D7cHqoA==", + "strip_prefix": "rules_xz-v1.0.0-beta.1", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "rules_cc@0.0.9": { "name": "rules_cc", "version": "0.0.9", diff --git a/e2e/extract/xz/BUILD.bazel b/e2e/extract/xz/BUILD.bazel new file mode 100644 index 0000000..7b13942 --- /dev/null +++ b/e2e/extract/xz/BUILD.bazel @@ -0,0 +1,40 @@ +load("@rules_diff//diff/file/test:defs.bzl", "diff_file_test") +load("@rules_tar//tar/extract:defs.bzl", "tar_extract") + +tar_extract( + name = "goodbye-world", + src = "//fixture:fixture.tar.xz", + outs = [ + "fixture/goodbye-world.txt", + ], +) + +diff_file_test( + name = "goodbye-world-diff", + size = "small", + a = "//fixture:goodbye-world.txt", + b = ":goodbye-world", +) + +tar_extract( + name = "multiple", + src = "//fixture:fixture.tar.xz", + outs = [ + "fixture/hello-world.txt", + "fixture/nested/goodbye-world.txt", + ], +) + +diff_file_test( + name = "hello-world-diff", + size = "small", + a = "//fixture:hello-world.txt", + b = ":fixture/hello-world.txt", +) + +diff_file_test( + name = "nested-goodbye-world-diff", + size = "small", + a = "//fixture/nested:goodbye-world.txt", + b = ":fixture/nested/goodbye-world.txt", +) diff --git a/e2e/fixture/fixture.tar.xz b/e2e/fixture/fixture.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e941667840c198bdd63173dafc925000f059f9bb GIT binary patch literal 348 zcmV-i0i*u?H+ooF000E$*0e?hz?%YqP$2;p000000002_CmLhmC;tHxT>vv0OL!CN zwHFoY>Oo{2vihVacZ}|oCo?) z=-F6W%LMQ1cGl=b1Q`V!Xm)pa;3N`%1MOW;5B_$iy%w;3JT^87M>$H}AqqVZNsJ=l zz3J9@&p|YFlJFXL)* Date: Tue, 25 Jun 2024 13:29:59 +0100 Subject: [PATCH 4/5] refactor: only add relevant codec binary to `$PATH` --- tar/codec.bzl | 17 +++++++++++++++++ tar/extract/rule.bzl | 23 +++-------------------- tar/unpack/rule.bzl | 23 +++-------------------- 3 files changed, 23 insertions(+), 40 deletions(-) create mode 100644 tar/codec.bzl diff --git a/tar/codec.bzl b/tar/codec.bzl new file mode 100644 index 0000000..e6837b3 --- /dev/null +++ b/tar/codec.bzl @@ -0,0 +1,17 @@ +load(":path.bzl", "path") + +visibility("//...") + +MAP = { + "gz": ("-z", "gzip", "@rules_gzip//gzip/toolchain/pigz:type"), + "bz2": ("-j", "bzip2", "@rules_bzip2//bzip2/toolchain/bzip2:type"), + "xz": ("-J", "xz", "@rules_xz//xz/toolchain/xz:type"), + "zst": ("--zstd", "zstd", "@rules_zstd//zstd/toolchain/zstd:type"), +} + +def codec(ctx, src): + if src.extension not in MAP: + return (), (), {} + arg, basename, toolchain = MAP[src.extension] + tools, env = path(ctx, {basename: toolchain}) + return (arg,), tools, env diff --git a/tar/extract/rule.bzl b/tar/extract/rule.bzl index f48568b..21fddab 100644 --- a/tar/extract/rule.bzl +++ b/tar/extract/rule.bzl @@ -1,4 +1,4 @@ -load("//tar:path.bzl", "path") +load("//tar:codec.bzl", "codec") visibility("//tar/...") @@ -37,29 +37,12 @@ def _name(label): def implementation(ctx): tar = ctx.toolchains["//tar/toolchain/tar:type"] - tools, env = path(ctx, { - "zstd": "@rules_zstd//zstd/toolchain/zstd:type", - "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", - "gzip": "@rules_gzip//gzip/toolchain/pigz:type", - "xz": "@rules_xz//xz/toolchain/xz:type", - }) + flags, tools, env = codec(ctx, ctx.file.src) args = ctx.actions.args() - - if ctx.file.src.extension == ".gz": - args.add("-z") - - elif ctx.file.src.extension == ".bz2": - args.add("-j") - - elif ctx.file.src.extension == ".zst": - args.add("--zstd") - - elif ctx.file.src.extension == ".xz": - args.add("-J") - args.add("-C").add("{}/{}".format(ctx.bin_dir.path, ctx.label.package)) args.add("-xvf").add(ctx.file.src.path) + args.add_all(flags) args.add_all(ctx.attr.outs, map_each = _name) ctx.actions.run( diff --git a/tar/unpack/rule.bzl b/tar/unpack/rule.bzl index b9c6c84..844af3b 100644 --- a/tar/unpack/rule.bzl +++ b/tar/unpack/rule.bzl @@ -1,4 +1,4 @@ -load("//tar:path.bzl", "path") +load("//tar:codec.bzl", "codec") visibility("//tar/...") @@ -26,29 +26,12 @@ def implementation(ctx): output_dir = ctx.actions.declare_directory(ctx.attr.name) - tools, env = path(ctx, { - "zstd": "@rules_zstd//zstd/toolchain/zstd:type", - "bzip2": "@rules_bzip2//bzip2/toolchain/bzip2:type", - "gzip": "@rules_gzip//gzip/toolchain/pigz:type", - "xz": "@rules_xz//xz/toolchain/xz:type", - }) + flags, tools, env = codec(ctx, ctx.file.src) args = ctx.actions.args() - - if ctx.file.src.extension == ".gz": - args.add("-z") - - elif ctx.file.src.extension == ".bz2": - args.add("-j") - - elif ctx.file.src.extension == ".zst": - args.add("--zstd") - - elif ctx.file.src.extension == ".xz": - args.add("-J") - args.add("-xvf").add(ctx.file.src.path) args.add("-C").add(output_dir.path) + args.add_all(flags) ctx.actions.run( outputs = [output_dir], -- GitLab From 1e1c03fa2fbc9b6d307527e8d5721be6a4127779 Mon Sep 17 00:00:00 2001 From: Matt Clarkson Date: Tue, 25 Jun 2024 13:30:09 +0100 Subject: [PATCH 5/5] chore: update lockfiles --- MODULE.bazel.lock | 4879 ++++++++++++++++++++++++++++++++++++++++- e2e/MODULE.bazel.lock | 4 +- 2 files changed, 4880 insertions(+), 3 deletions(-) diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index c3b6202..2f3c5ae 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -11613,5 +11613,4882 @@ } } }, - "moduleExtensions": {} + "moduleExtensions": { + "//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "6wiUQ6BX4aB2BSQ9e9cYos695XB0nVMS1OPcDJidNi0=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "resolved-tar": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", + "ruleClassName": "resolved", + "attributes": { + "toolchain_type": "@@//tar/toolchain/tar:type", + "name": "_main~_repo_rules~resolved-tar" + } + } + } + } + }, + "@@ape~1.0.0-beta.11//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "Eb1Xl7COaA7o2xZRXuWoU8oqNKYaG3jNe5NZjqS8dmk=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "zig-0.11.0-arm64-darwin": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/archive:repository.bzl", + "ruleClassName": "archive", + "attributes": { + "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": "ape~1.0.0-beta.11~_repo_rules~zig-0.11.0-arm64-darwin" + } + }, + "zig": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/select:repository.bzl", + "ruleClassName": "select", + "attributes": { + "map": { + "arm64-darwin": "@zig-0.11.0-arm64-darwin" + }, + "name": "ape~1.0.0-beta.11~_repo_rules~zig" + } + }, + "ape-m1.c": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "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.1/ape/ape-m1.c" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~ape-m1.c" + } + }, + "ape-arm64.macho": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/compile:repository.bzl", + "ruleClassName": "compile", + "attributes": { + "srcs": [ + "@@ape~1.0.0-beta.11~_repo_rules~ape-m1.c//:ape-m1.c" + ], + "output": "ape", + "zig": "@@ape~1.0.0-beta.11~_repo_rules~zig//:entrypoint", + "name": "ape~1.0.0-beta.11~_repo_rules~ape-arm64.macho" + } + }, + "ape-arm64.elf": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-h3zL1GUkMGVCbLSjyrQ1GsrZGGSfhlZVa7YEiC7q0I8=", + "output": "ape", + "urls": [ + "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~1.0.0-beta.11~_repo_rules~ape-arm64.elf" + } + }, + "ape-x86_64.elf": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fBz4sk4bbdatfaOBcEXVgq2hRrTW7AxqRb6oMOOmX00=", + "output": "ape", + "urls": [ + "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~1.0.0-beta.11~_repo_rules~ape-x86_64.elf" + } + }, + "ape-x86_64.macho": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-btvd3YJTsgZojeJJGIrf2OuFDpw9nxmEMleBS5NsWZg=", + "output": "ape", + "urls": [ + "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~1.0.0-beta.11~_repo_rules~ape-x86_64.macho" + } + }, + "ape.pe": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/pe:repository.bzl", + "ruleClassName": "pe", + "attributes": { + "name": "ape~1.0.0-beta.11~_repo_rules~ape.pe" + } + }, + "launcher": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/select:repository.bzl", + "ruleClassName": "select", + "attributes": { + "map": { + "arm64-linux": "@ape-arm64.elf", + "amd64-linux": "@ape-x86_64.elf", + "amd64-darwin": "@ape-x86_64.macho", + "arm64-darwin": "@ape-arm64.macho", + "windows": "@ape.pe" + }, + "name": "ape~1.0.0-beta.11~_repo_rules~launcher" + } + }, + "resolved-ape": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/resolved:repository.bzl", + "ruleClassName": "resolved", + "attributes": { + "toolchain_type": "@@ape~1.0.0-beta.11//ape/toolchain/ape:type", + "name": "ape~1.0.0-beta.11~_repo_rules~resolved-ape" + } + }, + "cosmos-assimilate": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zBP7dVhBaUKyxbSlqVWKjC293c+t0NSMfSYW0/FnV0s=", + "output": "assimilate", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/assimilate", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/assimilate" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-assimilate" + } + }, + "assimilate": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-assimilate//:assimilate", + "name": "ape~1.0.0-beta.11~_repo_rules~assimilate" + } + }, + "cosmos-awk": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-S8i3mKq7mEtBZzo1Uu679YqnAWzkikcVdf4VqEqI070=", + "output": "awk", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-awk" + } + }, + "awk": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-awk//:awk", + "name": "ape~1.0.0-beta.11~_repo_rules~awk" + } + }, + "cosmos-b2sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hybI849qLSwgx7YJkQn7jWLMnagPL2HjvrKm/piVuhs=", + "output": "b2sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-b2sum" + } + }, + "b2sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-b2sum//:b2sum", + "name": "ape~1.0.0-beta.11~_repo_rules~b2sum" + } + }, + "cosmos-base32": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-TZkpwZAqSQTHHcRwl88F8haL6d7vm8nzdB50IBU7Mlw=", + "output": "base32", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-base32" + } + }, + "base32": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-base32//:base32", + "name": "ape~1.0.0-beta.11~_repo_rules~base32" + } + }, + "cosmos-base64": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-5yuKsVWZrZm/uaI23z8UBm4KmrNy+V2iqP/yNIAfl00=", + "output": "base64", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-base64" + } + }, + "base64": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-base64//:base64", + "name": "ape~1.0.0-beta.11~_repo_rules~base64" + } + }, + "cosmos-basename": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-xKbtsOkcHIi9mW3aI1JGo9H3pqan8hBqfsPxoh3e32s=", + "output": "basename", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-basename" + } + }, + "basename": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-basename//:basename", + "name": "ape~1.0.0-beta.11~_repo_rules~basename" + } + }, + "cosmos-basenc": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-RWpNzGmO/BjqSz9l6DEdOhFX5qoo1iHDJR8sNiahPe0=", + "output": "basenc", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-basenc" + } + }, + "basenc": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-basenc//:basenc", + "name": "ape~1.0.0-beta.11~_repo_rules~basenc" + } + }, + "cosmos-bash": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-a5aWfQrsx8zogqy1WCJ/sYEaNlxBbsY9lZVf4VMYTT0=", + "output": "bash", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-bash" + } + }, + "bash": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-bash//:bash", + "name": "ape~1.0.0-beta.11~_repo_rules~bash" + } + }, + "cosmos-berry": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9ZJIEqpYwPi0OqU7N8BSAOci5yKcdv9cBnD5ZGzkj8g=", + "output": "berry", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-berry" + } + }, + "berry": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-berry//:berry", + "name": "ape~1.0.0-beta.11~_repo_rules~berry" + } + }, + "cosmos-brotli": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Tm3e9kratlJPUF8d/+fIGyjmeBjX7NAkYDyiL4ks2jM=", + "output": "brotli", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-brotli" + } + }, + "brotli": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-brotli//:brotli", + "name": "ape~1.0.0-beta.11~_repo_rules~brotli" + } + }, + "cosmos-bzip2": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lqfcO/t/s5f19EUnnV/oijc+iBnvmyblMAEM7FrcRZU=", + "output": "bzip2", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-bzip2" + } + }, + "bzip2": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-bzip2//:bzip2", + "name": "ape~1.0.0-beta.11~_repo_rules~bzip2" + } + }, + "cosmos-cat": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zn8YVGvKwuQoDg9YXAE+9nxYM4E8t004mwIyNrqVpbw=", + "output": "cat", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-cat" + } + }, + "cat": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cat//:cat", + "name": "ape~1.0.0-beta.11~_repo_rules~cat" + } + }, + "cosmos-chcon": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-qoL4zarrnBVQ+V6+xYnH4XCv856fUS/RxwQuBUGRFks=", + "output": "chcon", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-chcon" + } + }, + "chcon": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chcon//:chcon", + "name": "ape~1.0.0-beta.11~_repo_rules~chcon" + } + }, + "cosmos-chgrp": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-GoWZbn/c4+E+TQhqD6lIOMVWUDJnbp6Wk8SHU7zENoU=", + "output": "chgrp", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-chgrp" + } + }, + "chgrp": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chgrp//:chgrp", + "name": "ape~1.0.0-beta.11~_repo_rules~chgrp" + } + }, + "cosmos-chown": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LkN2ONSleTXKvpz/dYlk4m9UJRuCztov3+DlOEodXDE=", + "output": "chown", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-chown" + } + }, + "chown": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chown//:chown", + "name": "ape~1.0.0-beta.11~_repo_rules~chown" + } + }, + "cosmos-chroot": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jZbYqT/TwIpw6BO9FfJ3GxvklpKE0mBBXiNuGSbtsns=", + "output": "chroot", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-chroot" + } + }, + "chroot": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chroot//:chroot", + "name": "ape~1.0.0-beta.11~_repo_rules~chroot" + } + }, + "cosmos-cksum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hfAnWqmktIYXHEiTaKWQL/fDXK7bnHQONkRKtaMd5J4=", + "output": "cksum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-cksum" + } + }, + "cksum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cksum//:cksum", + "name": "ape~1.0.0-beta.11~_repo_rules~cksum" + } + }, + "cosmos-clang-format": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", + "output": "clang-format", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-clang-format" + } + }, + "clang-format": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-clang-format//:clang-format", + "name": "ape~1.0.0-beta.11~_repo_rules~clang-format" + } + }, + "cosmos-cmp": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-cmp" + } + }, + "cmp": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cmp//:cmp", + "name": "ape~1.0.0-beta.11~_repo_rules~cmp" + } + }, + "cosmos-comm": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uh4mLvzwY0QmCT32SRL/f0ubzXfszKpvb2ZtboQrNIA=", + "output": "comm", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-comm" + } + }, + "comm": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-comm//:comm", + "name": "ape~1.0.0-beta.11~_repo_rules~comm" + } + }, + "cosmos-cpuid": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wAGvPA8axzW+XJ5w861q7IV518W7WMrZ/tbZ0Z78t1E=", + "output": "cpuid", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-cpuid" + } + }, + "cpuid": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cpuid//:cpuid", + "name": "ape~1.0.0-beta.11~_repo_rules~cpuid" + } + }, + "cosmos-csplit": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-nLz8hfRVZDGz/UVq1/Ge0j4Q06eSLgLxu4aRexwEelA=", + "output": "csplit", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-csplit" + } + }, + "csplit": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-csplit//:csplit", + "name": "ape~1.0.0-beta.11~_repo_rules~csplit" + } + }, + "cosmos-ctags": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-x/101oqxSvgRoQ9N9+sZkuC7/tV+zVnId4Jo4gX5PIU=", + "output": "ctags", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ctags" + } + }, + "ctags": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ctags//:ctags", + "name": "ape~1.0.0-beta.11~_repo_rules~ctags" + } + }, + "cosmos-curl": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-54mSqLkXfwMSRZtPa2w2T8XuvE12o9QxJRQYmOGn1YY=", + "output": "curl", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-curl" + } + }, + "curl": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-curl//:curl", + "name": "ape~1.0.0-beta.11~_repo_rules~curl" + } + }, + "cosmos-cut": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FDcHrxJ+CjkPOYFD/F7F9EOF93TKbU2/N7CHP8vte4I=", + "output": "cut", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-cut" + } + }, + "cut": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cut//:cut", + "name": "ape~1.0.0-beta.11~_repo_rules~cut" + } + }, + "cosmos-dash": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-AMQZpQl5cfVZ/1vZAn/SnuSGC34CkfPMXA9tQixE/zM=", + "output": "dash", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-dash" + } + }, + "dash": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dash//:dash", + "name": "ape~1.0.0-beta.11~_repo_rules~dash" + } + }, + "cosmos-datasette": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hUDSYI+lpEhVX6zhFnNHu/N3bNfDeWSJQjkAzcoYCjA=", + "output": "datasette", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-datasette" + } + }, + "datasette": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-datasette//:datasette", + "name": "ape~1.0.0-beta.11~_repo_rules~datasette" + } + }, + "cosmos-date": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uNP3r6CkyURYW7vH5rR/FXMQpoBgiyW2sTn6qUEs0ao=", + "output": "date", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-date" + } + }, + "date": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-date//:date", + "name": "ape~1.0.0-beta.11~_repo_rules~date" + } + }, + "cosmos-df": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-VtOW2S2dzEAwP/5B9Qj4u/qZndNCo0lJrSqWX7Sd6vo=", + "output": "df", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-df" + } + }, + "df": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-df//:df", + "name": "ape~1.0.0-beta.11~_repo_rules~df" + } + }, + "cosmos-dir": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-oNxnS6F4pCNMedClbW/NFRRbP1XAwsdZpGJ2VsXug0g=", + "output": "dir", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-dir" + } + }, + "dir": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dir//:dir", + "name": "ape~1.0.0-beta.11~_repo_rules~dir" + } + }, + "cosmos-dircolors": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ASzE+h3h/0XBA4vrOyPSKptSE0tJEpbfFtMN1nDhGa4=", + "output": "dircolors", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-dircolors" + } + }, + "dircolors": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dircolors//:dircolors", + "name": "ape~1.0.0-beta.11~_repo_rules~dircolors" + } + }, + "cosmos-dirname": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EMAAvhNKylQI5YR1O3P1locWiIUpclMesgKAu9UWNec=", + "output": "dirname", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-dirname" + } + }, + "dirname": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dirname//:dirname", + "name": "ape~1.0.0-beta.11~_repo_rules~dirname" + } + }, + "cosmos-diff": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-diff" + } + }, + "diff": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-diff//:diff", + "name": "ape~1.0.0-beta.11~_repo_rules~diff" + } + }, + "cosmos-diff3": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-diff3" + } + }, + "diff3": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-diff3//:diff3", + "name": "ape~1.0.0-beta.11~_repo_rules~diff3" + } + }, + "cosmos-du": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XeQC8BcRZjuA+BCb+JRyRe+6wN3m3iVWZ7BIBF7guvA=", + "output": "du", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-du" + } + }, + "du": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-du//:du", + "name": "ape~1.0.0-beta.11~_repo_rules~du" + } + }, + "cosmos-emacs": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DLJvKJfmHsrzgD7083fWvp3RFiUMvs3lvWk0xLH92z8=", + "output": "emacs", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-emacs" + } + }, + "emacs": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-emacs//:emacs", + "name": "ape~1.0.0-beta.11~_repo_rules~emacs" + } + }, + "cosmos-emacsclient": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-6hH6jn2pBX9VsoU4v3u3Xol4MR/6vskzIOwvOhMH5M4=", + "output": "emacsclient", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-emacsclient" + } + }, + "emacsclient": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-emacsclient//:emacsclient", + "name": "ape~1.0.0-beta.11~_repo_rules~emacsclient" + } + }, + "cosmos-env": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Lm8iE0YBdvYwn4RMAyqiLWbVxqaEf2iNWilY3PPAGN4=", + "output": "env", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/env", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/env" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-env" + } + }, + "env": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-env//:env", + "name": "ape~1.0.0-beta.11~_repo_rules~env" + } + }, + "cosmos-expand": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/hCOZX9bhwc5SjWQ9GIWwbcPCozCUWUKa/iuDv/ih2c=", + "output": "expand", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/expand", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/expand" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-expand" + } + }, + "expand": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-expand//:expand", + "name": "ape~1.0.0-beta.11~_repo_rules~expand" + } + }, + "cosmos-expr": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-31jw0oaJRgL3qHsBhGDc0TEuSNoAiBH8gyjzRzz87UE=", + "output": "expr", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-expr" + } + }, + "expr": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-expr//:expr", + "name": "ape~1.0.0-beta.11~_repo_rules~expr" + } + }, + "cosmos-factor": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-me2S4CN3G/KcERW/B86F9MbnvuQg4jaNPWoH4nUH7mk=", + "output": "factor", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-factor" + } + }, + "factor": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-factor//:factor", + "name": "ape~1.0.0-beta.11~_repo_rules~factor" + } + }, + "cosmos-false": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KuxblC3tmFtyDjUcdGIag/UVdOGhvxtvrJkRrP6qyl4=", + "output": "false", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-false" + } + }, + "false": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-false//:false", + "name": "ape~1.0.0-beta.11~_repo_rules~false" + } + }, + "cosmos-find": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7h4OC/Lz/iD7WkTxmvmSZOflw/E6gTMssKSz68qPCFw=", + "output": "find", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-find" + } + }, + "find": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-find//:find", + "name": "ape~1.0.0-beta.11~_repo_rules~find" + } + }, + "cosmos-fmt": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-DB2vUqeSnUryfZj+qibUGKMs4Abcz6qzM3w6lawptsM=", + "output": "fmt", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-fmt" + } + }, + "fmt": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-fmt//:fmt", + "name": "ape~1.0.0-beta.11~_repo_rules~fmt" + } + }, + "cosmos-fold": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-TdlGtv30nM28eoUXx9jjhAf7Zj834R0SHz0yfbcrWio=", + "output": "fold", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-fold" + } + }, + "fold": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-fold//:fold", + "name": "ape~1.0.0-beta.11~_repo_rules~fold" + } + }, + "cosmos-gmake": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-3J/jjvnCUMTfEyRc5RsxmVJw0jpSwmmzrEFO/u2/pQ8=", + "output": "gmake", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-gmake" + } + }, + "gmake": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-gmake//:gmake", + "name": "ape~1.0.0-beta.11~_repo_rules~gmake" + } + }, + "cosmos-greenbean": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jZ4Oj9zhG/UUB2QmhMdDsx4fTdL8/0xvBCHOK/rGSys=", + "output": "greenbean", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-greenbean" + } + }, + "greenbean": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-greenbean//:greenbean", + "name": "ape~1.0.0-beta.11~_repo_rules~greenbean" + } + }, + "cosmos-grep": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-geISCmpxm4c2gwPnR+XjF47+j/mw2epm5qYEn5Vrvok=", + "output": "grep", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-grep" + } + }, + "grep": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-grep//:grep", + "name": "ape~1.0.0-beta.11~_repo_rules~grep" + } + }, + "cosmos-groups": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-64yeH5wPP7omE7VfLLH8HGWjyE7zgdzMF8oLpVz+5PY=", + "output": "groups", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-groups" + } + }, + "groups": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-groups//:groups", + "name": "ape~1.0.0-beta.11~_repo_rules~groups" + } + }, + "cosmos-head": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Lr5xxWMwjZjQUh2ODx/zDzTO3fx8Yw5694p1t7zG0AU=", + "output": "head", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-head" + } + }, + "head": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-head//:head", + "name": "ape~1.0.0-beta.11~_repo_rules~head" + } + }, + "cosmos-id": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8JUzzmsMkhu2sc9w2I/nb8recinaAamgGe7JEQh98kI=", + "output": "id", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-id" + } + }, + "id": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-id//:id", + "name": "ape~1.0.0-beta.11~_repo_rules~id" + } + }, + "cosmos-install": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Iu1sv7WjlREuCQp3mgDxFCRf0byn5beC8JmHjWodb/M=", + "output": "install", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-install" + } + }, + "install": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-install//:install", + "name": "ape~1.0.0-beta.11~_repo_rules~install" + } + }, + "cosmos-join": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-eb7PzIfyziQZ8LeauwpuES+YKemu52jmt0KgJ3pAzks=", + "output": "join", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-join" + } + }, + "join": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-join//:join", + "name": "ape~1.0.0-beta.11~_repo_rules~join" + } + }, + "cosmos-kill": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-l4b6fMDZR4yHnP1ZpRVL2KfCOgbKDHZkUzo8wlZkMUA=", + "output": "kill", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-kill" + } + }, + "kill": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-kill//:kill", + "name": "ape~1.0.0-beta.11~_repo_rules~kill" + } + }, + "cosmos-less": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pysLPyq9zi5gTcj+UTu41PgZsRnUAdYzATIUMiMEsQw=", + "output": "less", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-less" + } + }, + "less": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-less//:less", + "name": "ape~1.0.0-beta.11~_repo_rules~less" + } + }, + "cosmos-life": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ui3H0RF4G0JHV9kbDIy5qviR+mKEN//98jHfznq8tO4=", + "output": "life", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-life" + } + }, + "life": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-life//:life", + "name": "ape~1.0.0-beta.11~_repo_rules~life" + } + }, + "cosmos-link": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-HFtwRXzP/Z+pJTM/Yz7+AMXumO46HmvGGfsHE9vUox8=", + "output": "link", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-link" + } + }, + "link": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-link//:link", + "name": "ape~1.0.0-beta.11~_repo_rules~link" + } + }, + "cosmos-links": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-EEOqXakHybI51BOxnBCHwLeYlwF8iSSx8p3Gxgcz0Qc=", + "output": "links", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-links" + } + }, + "links": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-links//:links", + "name": "ape~1.0.0-beta.11~_repo_rules~links" + } + }, + "cosmos-ln": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-FtXuVwYLaC/DT3LPF8coiSMCEOmVVorVzqBYDDRtjyg=", + "output": "ln", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ln" + } + }, + "ln": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ln//:ln", + "name": "ape~1.0.0-beta.11~_repo_rules~ln" + } + }, + "cosmos-locate": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ZQUPf3kqvmik5citQP+wJiHeOJWrcX4TIDLytEuRyyo=", + "output": "locate", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-locate" + } + }, + "locate": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-locate//:locate", + "name": "ape~1.0.0-beta.11~_repo_rules~locate" + } + }, + "cosmos-logname": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IMIHQygOJnWQ2pPMqcFZwKURdNAZM5onxESxBcLM7kM=", + "output": "logname", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-logname" + } + }, + "logname": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-logname//:logname", + "name": "ape~1.0.0-beta.11~_repo_rules~logname" + } + }, + "cosmos-ls": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Fno6FUKMAA/8Uk2rsAauhr/b5uqeZcs2oAy+s8uHx3w=", + "output": "ls", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ls" + } + }, + "ls": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ls//:ls", + "name": "ape~1.0.0-beta.11~_repo_rules~ls" + } + }, + "cosmos-lua": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LRYoHAQg+M8kQKtX6gCjSvD4b9puEbTK2t4z6hyVW8I=", + "output": "lua", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-lua" + } + }, + "lua": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-lua//:lua", + "name": "ape~1.0.0-beta.11~_repo_rules~lua" + } + }, + "cosmos-lz4": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-ymvYKyvlv31C6tdLYCVFfhaqvmZ5J37RDbxeGx/6rrI=", + "output": "lz4", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-lz4" + } + }, + "lz4": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-lz4//:lz4", + "name": "ape~1.0.0-beta.11~_repo_rules~lz4" + } + }, + "cosmos-make": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-98atSW2fzibEFrcpFy77A7IvnW0TtMEbeMKxicWb8FM=", + "output": "make", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-make" + } + }, + "make": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-make//:make", + "name": "ape~1.0.0-beta.11~_repo_rules~make" + } + }, + "cosmos-md5sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-1lNBqdyji+ttmR+4sIS6DXcJs6d+67gF0+Q3bUqNaIs=", + "output": "md5sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-md5sum" + } + }, + "md5sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-md5sum//:md5sum", + "name": "ape~1.0.0-beta.11~_repo_rules~md5sum" + } + }, + "cosmos-mkfifo": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Z/dfvumWh0v8wr0l8ByZztaztwMkfekaOXNVnFLVxEk=", + "output": "mkfifo", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-mkfifo" + } + }, + "mkfifo": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mkfifo//:mkfifo", + "name": "ape~1.0.0-beta.11~_repo_rules~mkfifo" + } + }, + "cosmos-mknod": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-C7rFuRsgVIA63trDx8rTpFGJztXbNAPMtNuqbzGeqdw=", + "output": "mknod", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-mknod" + } + }, + "mknod": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mknod//:mknod", + "name": "ape~1.0.0-beta.11~_repo_rules~mknod" + } + }, + "cosmos-mktemp": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-GihMOG1RDJHUqphmOZPwkfEaVC4jC/X0kCRskpH09u8=", + "output": "mktemp", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-mktemp" + } + }, + "mktemp": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mktemp//:mktemp", + "name": "ape~1.0.0-beta.11~_repo_rules~mktemp" + } + }, + "cosmos-mktemper": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WreRwEGUss++hwxb+3Cttu72Voe4yi4E7Xyr9soCXps=", + "output": "mktemper", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-mktemper" + } + }, + "mktemper": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mktemper//:mktemper", + "name": "ape~1.0.0-beta.11~_repo_rules~mktemper" + } + }, + "cosmos-nano": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-trc2X1Jg1JTviP+nbelsQvtMmgrh5gtF7fEijdDvkZY=", + "output": "nano", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nano" + } + }, + "nano": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nano//:nano", + "name": "ape~1.0.0-beta.11~_repo_rules~nano" + } + }, + "cosmos-nesemu1": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-JOqaQ2aNcGoiB3YdX2zLCGGD8kFr4Glv3PLPVej/nwc=", + "output": "nesemu1", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nesemu1" + } + }, + "nesemu1": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nesemu1//:nesemu1", + "name": "ape~1.0.0-beta.11~_repo_rules~nesemu1" + } + }, + "cosmos-nice": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-+fHYlw1WIDX4kCzoTDYy5tqI/BdetF7WlxkJCWpJlrM=", + "output": "nice", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nice" + } + }, + "nice": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nice//:nice", + "name": "ape~1.0.0-beta.11~_repo_rules~nice" + } + }, + "cosmos-ninja": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MdTFCVaBaiknlbcAXEshhc6P+QDEmNLH6NOt1bGbbu4=", + "output": "ninja", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ninja" + } + }, + "ninja": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ninja//:ninja", + "name": "ape~1.0.0-beta.11~_repo_rules~ninja" + } + }, + "cosmos-nl": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-y5a/fgKdjraA7e+RUKZSh6BIQPviZsxu4720/yPzGUI=", + "output": "nl", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nl" + } + }, + "nl": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nl//:nl", + "name": "ape~1.0.0-beta.11~_repo_rules~nl" + } + }, + "cosmos-nohup": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-sTiFAUHIl+IF6N8wChBjYZj3NJg4vN461JPY9T1peo8=", + "output": "nohup", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nohup" + } + }, + "nohup": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nohup//:nohup", + "name": "ape~1.0.0-beta.11~_repo_rules~nohup" + } + }, + "cosmos-nproc": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Dydu9oowmpkajx9rq006f5I4Z0BhP6EJv+S0xEjTRcU=", + "output": "nproc", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-nproc" + } + }, + "nproc": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-nproc//:nproc", + "name": "ape~1.0.0-beta.11~_repo_rules~nproc" + } + }, + "cosmos-numfmt": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7VTO7GYItNhcoqC7qixlY4dK7l0TgRFRBivCJjbls5Y=", + "output": "numfmt", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-numfmt" + } + }, + "numfmt": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-numfmt//:numfmt", + "name": "ape~1.0.0-beta.11~_repo_rules~numfmt" + } + }, + "cosmos-od": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-RV+nBJ885wCxqLW8+UOEm3rQopQQhQ/rHuHJYrhZiYA=", + "output": "od", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-od" + } + }, + "od": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-od//:od", + "name": "ape~1.0.0-beta.11~_repo_rules~od" + } + }, + "cosmos-paste": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-d37G1PptmT8DvFYb0A51tHRAONW3k2xq4y8pFnbR/FA=", + "output": "paste", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-paste" + } + }, + "paste": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-paste//:paste", + "name": "ape~1.0.0-beta.11~_repo_rules~paste" + } + }, + "cosmos-patch": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-dUVoOS8qaaVAsTlHp5DnupNPB02ZBfVBYUNoFEQVfY4=", + "output": "patch", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/patch", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/patch" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-patch" + } + }, + "patch": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-patch//:patch", + "name": "ape~1.0.0-beta.11~_repo_rules~patch" + } + }, + "cosmos-pathchk": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-qjcLXvmgW3bbARJqpE5PF1LdaVrvnQZVsmBFgTM5/JY=", + "output": "pathchk", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pathchk" + } + }, + "pathchk": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pathchk//:pathchk", + "name": "ape~1.0.0-beta.11~_repo_rules~pathchk" + } + }, + "cosmos-pinky": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-cCtYw56s7y1pYOCm/PNgp1Y+pgf8K0UjVVsikUIoJQE=", + "output": "pinky", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pinky" + } + }, + "pinky": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pinky//:pinky", + "name": "ape~1.0.0-beta.11~_repo_rules~pinky" + } + }, + "cosmos-pledge": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-eaFRVXB2hGp2o9lYNSP+bb+sxOQ04bqCU2mDEmSIRN0=", + "output": "pledge", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pledge" + } + }, + "pledge": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pledge//:pledge", + "name": "ape~1.0.0-beta.11~_repo_rules~pledge" + } + }, + "cosmos-pr": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Cd292alJ/36s1BOyfPj+SDDCuMGsgduzsjHspANOguU=", + "output": "pr", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pr" + } + }, + "pr": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pr//:pr", + "name": "ape~1.0.0-beta.11~_repo_rules~pr" + } + }, + "cosmos-printenv": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-sCxezf/rJ5S2Yw9ELAh8TD0MCUKhTjdwvLfHBVHUiyc=", + "output": "printenv", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-printenv" + } + }, + "printenv": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printenv//:printenv", + "name": "ape~1.0.0-beta.11~_repo_rules~printenv" + } + }, + "cosmos-printimage": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Q6HlaWrVneltekJ6JEceoU+yFzN9o9xpkI4UVwSXFrE=", + "output": "printimage", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-printimage" + } + }, + "printimage": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printimage//:printimage", + "name": "ape~1.0.0-beta.11~_repo_rules~printimage" + } + }, + "cosmos-ptx": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Hv3T2mhutoeK16lpWmZ9f1pbKnJfu1GGc4nCiwBwJ4Q=", + "output": "ptx", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ptx" + } + }, + "ptx": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ptx//:ptx", + "name": "ape~1.0.0-beta.11~_repo_rules~ptx" + } + }, + "cosmos-pwd": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-beUdC7B+HkPJsGjf/isqDL3QQ1gwypLBf32EC2tKa5g=", + "output": "pwd", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pwd" + } + }, + "pwd": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pwd//:pwd", + "name": "ape~1.0.0-beta.11~_repo_rules~pwd" + } + }, + "cosmos-pypack1": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-492wiVHg7chVDxUrir3pOrY1OZ/2h8uKBwfD4gtLJuM=", + "output": "pypack1", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-pypack1" + } + }, + "pypack1": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pypack1//:pypack1", + "name": "ape~1.0.0-beta.11~_repo_rules~pypack1" + } + }, + "cosmos-python": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CuebA8IWxuoYr9HjVgyMLqf0kx23/OGIcS/tAsvPm98=", + "output": "python", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-python" + } + }, + "python": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-python//:python", + "name": "ape~1.0.0-beta.11~_repo_rules~python" + } + }, + "cosmos-qjs": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-dgblh0J7T6VumjgCrL0PPJAUIzrqGFw9oqoYSO+g39o=", + "output": "qjs", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-qjs" + } + }, + "qjs": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-qjs//:qjs", + "name": "ape~1.0.0-beta.11~_repo_rules~qjs" + } + }, + "cosmos-readlink": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-n/FcF1jTFHmxvvh0UZeUbJOzse0mCIYEi7nFM0Wb2mg=", + "output": "readlink", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-readlink" + } + }, + "readlink": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-readlink//:readlink", + "name": "ape~1.0.0-beta.11~_repo_rules~readlink" + } + }, + "cosmos-realpath": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-0SUHEaSMliLf0BRdXaEAUGbwAAKXEV8M7f/xnBmqPPE=", + "output": "realpath", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-realpath" + } + }, + "realpath": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-realpath//:realpath", + "name": "ape~1.0.0-beta.11~_repo_rules~realpath" + } + }, + "cosmos-redbean": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-b6+KyGmVKmo6iiSUuhRrkIMQ9Mnr8ZqZR64rxtg4BBE=", + "output": "redbean", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-redbean" + } + }, + "redbean": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-redbean//:redbean", + "name": "ape~1.0.0-beta.11~_repo_rules~redbean" + } + }, + "cosmos-rmdir": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-4yRCV2b4p4im2dCQka0gp7qbdbG0d5OmILbAErTEsF0=", + "output": "rmdir", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-rmdir" + } + }, + "rmdir": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rmdir//:rmdir", + "name": "ape~1.0.0-beta.11~_repo_rules~rmdir" + } + }, + "cosmos-rsync": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IpC+6WKlj7EqkYxNXXDdO7IaF1/jTItBvlSKr0MdNIk=", + "output": "rsync", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-rsync" + } + }, + "rsync": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rsync//:rsync", + "name": "ape~1.0.0-beta.11~_repo_rules~rsync" + } + }, + "cosmos-runcon": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-y4OAxP6BQPy2+Rk4qFtStsBtiwOlZLlr30Un6Tt8B1k=", + "output": "runcon", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-runcon" + } + }, + "runcon": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-runcon//:runcon", + "name": "ape~1.0.0-beta.11~_repo_rules~runcon" + } + }, + "cosmos-script": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-He3EhRTNYIFHfDShoR69EPZW7USl/7gSM1ZB0uk+ie4=", + "output": "script", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-script" + } + }, + "script": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-script//:script", + "name": "ape~1.0.0-beta.11~_repo_rules~script" + } + }, + "cosmos-sdiff": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-V8rMT2LlnNJ5nQDA+HRVtYBWeoHFCko3lSoyJMo/UTE=", + "output": "sdiff", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/sdiff", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/sdiff" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-sdiff" + } + }, + "sdiff": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sdiff//:sdiff", + "name": "ape~1.0.0-beta.11~_repo_rules~sdiff" + } + }, + "cosmos-sed": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-7z5mtxxjLL9ebC4V1cOpPjzArSxs1cIEsKizH4WPt3E=", + "output": "sed", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sed" + } + }, + "sed": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sed//:sed", + "name": "ape~1.0.0-beta.11~_repo_rules~sed" + } + }, + "cosmos-seq": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-OVOPZyBJJ9rcf1fnIU7ZvJuVTXN89cfXMGYGU1Es5Lo=", + "output": "seq", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-seq" + } + }, + "seq": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-seq//:seq", + "name": "ape~1.0.0-beta.11~_repo_rules~seq" + } + }, + "cosmos-sha1sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-2cL2GKl26qqr+FB3mKjhFPaIzPXCzxBiMfPOBYulFp0=", + "output": "sha1sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha1sum" + } + }, + "sha1sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha1sum//:sha1sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha1sum" + } + }, + "cosmos-sha224sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Dk9BKP17F/la+gPizCvGjtTqa6/tZT0gTrp1vrKInbo=", + "output": "sha224sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha224sum" + } + }, + "sha224sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha224sum//:sha224sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha224sum" + } + }, + "cosmos-sha256sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WIplUCNmB7rMDb3/LvrqwoIHaNFw29Etvu6ivX2kCgE=", + "output": "sha256sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha256sum" + } + }, + "sha256sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha256sum//:sha256sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha256sum" + } + }, + "cosmos-sha384sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-nLx1jTqjwSnhWO6eK+heIWHuterKu3B04nYkrp9Shrk=", + "output": "sha384sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha384sum" + } + }, + "sha384sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha384sum//:sha384sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha384sum" + } + }, + "cosmos-sha512sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-y8UewGoBGDMfq2wKHFijVN+NtWKLWZDPOAVQBIA7mSA=", + "output": "sha512sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sha512sum" + } + }, + "sha512sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sha512sum//:sha512sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sha512sum" + } + }, + "cosmos-shred": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-i8AEctRrGsvRs8Ly7XmK+XpgiZeQVVjIhQ7ie/Yy8yw=", + "output": "shred", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-shred" + } + }, + "shred": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-shred//:shred", + "name": "ape~1.0.0-beta.11~_repo_rules~shred" + } + }, + "cosmos-shuf": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WIdP7u66G/XFPDgyCpBihZBgijdeinfBDjARp1K8QXk=", + "output": "shuf", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-shuf" + } + }, + "shuf": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-shuf//:shuf", + "name": "ape~1.0.0-beta.11~_repo_rules~shuf" + } + }, + "cosmos-sleep": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-gtC/7PR5VvzgxL4FwBJ6VO6b0DN7uBYUc8oQcMeKHWY=", + "output": "sleep", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sleep" + } + }, + "sleep": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sleep//:sleep", + "name": "ape~1.0.0-beta.11~_repo_rules~sleep" + } + }, + "cosmos-sort": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-nz0/ivLwTYtnvl4Xpl456rDfRickgpukdzdPFQy7Bu8=", + "output": "sort", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sort" + } + }, + "sort": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sort//:sort", + "name": "ape~1.0.0-beta.11~_repo_rules~sort" + } + }, + "cosmos-split": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-LKP1sD1cxx+lTlkcxXX2Ew1w3ywOeIoUgnLbZ8ase88=", + "output": "split", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-split" + } + }, + "split": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-split//:split", + "name": "ape~1.0.0-beta.11~_repo_rules~split" + } + }, + "cosmos-sqlite3": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-MMV+VsI6iwk1U5gATzJEfKqFTRLcNjE6r0TSAmT/3O8=", + "output": "sqlite3", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sqlite3" + } + }, + "sqlite3": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sqlite3//:sqlite3", + "name": "ape~1.0.0-beta.11~_repo_rules~sqlite3" + } + }, + "cosmos-stat": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-VX1GgQICdH2+F5mmYc4WI7G4OT5FFI+Zy3fRw45aypU=", + "output": "stat", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-stat" + } + }, + "stat": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-stat//:stat", + "name": "ape~1.0.0-beta.11~_repo_rules~stat" + } + }, + "cosmos-stty": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pBDYJV6K2WuiZTqTkHusvezMBwuf9WeBKOYA/CVyuUI=", + "output": "stty", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-stty" + } + }, + "stty": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-stty//:stty", + "name": "ape~1.0.0-beta.11~_repo_rules~stty" + } + }, + "cosmos-sum": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-V4E8YCCny/DfQ6vaSupDsQpEF8eF265jIVKiffjExD8=", + "output": "sum", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sum" + } + }, + "sum": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sum//:sum", + "name": "ape~1.0.0-beta.11~_repo_rules~sum" + } + }, + "cosmos-sync": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-92eEiTPpnGEmb1ECuvSXMrAjY+mv/DPP7SMEokOIWNs=", + "output": "sync", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-sync" + } + }, + "sync": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-sync//:sync", + "name": "ape~1.0.0-beta.11~_repo_rules~sync" + } + }, + "cosmos-tac": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wCJO+G4bdaTYMzOhZK0CqJbb1fEOmUTAgUrs/yKUi1c=", + "output": "tac", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tac" + } + }, + "tac": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tac//:tac", + "name": "ape~1.0.0-beta.11~_repo_rules~tac" + } + }, + "cosmos-tail": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-25wCKN+CWbZI7/zvmviGlkz4MN6R+mhScVo+BonuDy0=", + "output": "tail", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tail" + } + }, + "tail": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tail//:tail", + "name": "ape~1.0.0-beta.11~_repo_rules~tail" + } + }, + "cosmos-tar": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-veeG74pMzsCwry2oKhbXtrODNLikp7S0Wv98vaAgTlE=", + "output": "tar", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tar" + } + }, + "tar": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tar//:tar", + "name": "ape~1.0.0-beta.11~_repo_rules~tar" + } + }, + "cosmos-tee": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-9nv7tmm8AZfZEIflRNwZz01qDR32aMkbAfhBQTxSgZs=", + "output": "tee", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tee" + } + }, + "tee": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tee//:tee", + "name": "ape~1.0.0-beta.11~_repo_rules~tee" + } + }, + "cosmos-test": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-njjQ967LtdtyVIr2LHLwNZcDjCh1ehqjf4vd4qs1xOY=", + "output": "test", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-test" + } + }, + "test": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-test//:test", + "name": "ape~1.0.0-beta.11~_repo_rules~test" + } + }, + "cosmos-tidy": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lDaweZcW7rqo3azvmyGRNoIFwH6QfBX9hTtV5XgZMkc=", + "output": "tidy", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tidy" + } + }, + "tidy": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tidy//:tidy", + "name": "ape~1.0.0-beta.11~_repo_rules~tidy" + } + }, + "cosmos-timeout": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-/05So3XYe6Q1ZaLlg3CkexkMWeePhlCnfiN3FWj40q8=", + "output": "timeout", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-timeout" + } + }, + "timeout": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-timeout//:timeout", + "name": "ape~1.0.0-beta.11~_repo_rules~timeout" + } + }, + "cosmos-tmux": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-8bdRHrTHAxbBe3jxvDWasMBTt9B/z/I25PZ/7BX8GlI=", + "output": "tmux", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tmux" + } + }, + "tmux": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tmux//:tmux", + "name": "ape~1.0.0-beta.11~_repo_rules~tmux" + } + }, + "cosmos-touch": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zhFuIvzfkzMi3FTIOumqd4GtGEVJpP/wBeU7/homOPI=", + "output": "touch", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-touch" + } + }, + "touch": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-touch//:touch", + "name": "ape~1.0.0-beta.11~_repo_rules~touch" + } + }, + "cosmos-tr": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-IiVcClTzSTp1JmNOHSlcIayZvNHbVY42DnAE8/0Qesc=", + "output": "tr", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tr" + } + }, + "tr": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tr//:tr", + "name": "ape~1.0.0-beta.11~_repo_rules~tr" + } + }, + "cosmos-tree": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-cQ8mhq2xdF49vJUc7FloZUswVn72LJDTgxqtRoKCsiw=", + "output": "tree", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tree" + } + }, + "tree": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tree//:tree", + "name": "ape~1.0.0-beta.11~_repo_rules~tree" + } + }, + "cosmos-true": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hYaiwy4ndHtQVXkue5IZqX6eGTEIG5hF9dFiJNwy0hE=", + "output": "true", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-true" + } + }, + "true": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-true//:true", + "name": "ape~1.0.0-beta.11~_repo_rules~true" + } + }, + "cosmos-truncate": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-WBM53lBcudr5o7aZXSFtGMAtTDOiTO5mzJXu93LKD30=", + "output": "truncate", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-truncate" + } + }, + "truncate": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-truncate//:truncate", + "name": "ape~1.0.0-beta.11~_repo_rules~truncate" + } + }, + "cosmos-tsort": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UpSUFlDED5YslxGn5tffiVOo+wXCkrHIcxn01I4h15s=", + "output": "tsort", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tsort" + } + }, + "tsort": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tsort//:tsort", + "name": "ape~1.0.0-beta.11~_repo_rules~tsort" + } + }, + "cosmos-tty": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yzZVpirempT1e3VfLqW/wh73Wg/MO9liJDJLRFqzOmE=", + "output": "tty", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-tty" + } + }, + "tty": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-tty//:tty", + "name": "ape~1.0.0-beta.11~_repo_rules~tty" + } + }, + "cosmos-ttyinfo": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-80TSpREUXO5RJzkGhTYbDL1r31/JdiQ/9bojc0SJL5w=", + "output": "ttyinfo", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-ttyinfo" + } + }, + "ttyinfo": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-ttyinfo//:ttyinfo", + "name": "ape~1.0.0-beta.11~_repo_rules~ttyinfo" + } + }, + "cosmos-unbourne": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-nXUhnAnJZE2ibUTpzuPRuo3ZStSR5YsizSyzPvleEEg=", + "output": "unbourne", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-unbourne" + } + }, + "unbourne": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unbourne//:unbourne", + "name": "ape~1.0.0-beta.11~_repo_rules~unbourne" + } + }, + "cosmos-unexpand": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-SyirSgmXz8cG1TAs5tZHbTIUEup4TobeFXKHUn8g1d0=", + "output": "unexpand", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-unexpand" + } + }, + "unexpand": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unexpand//:unexpand", + "name": "ape~1.0.0-beta.11~_repo_rules~unexpand" + } + }, + "cosmos-uniq": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-bRyARZw39jAZXgyGVm63r2V7r+xT3L4d90kAYVlDAZY=", + "output": "uniq", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-uniq" + } + }, + "uniq": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uniq//:uniq", + "name": "ape~1.0.0-beta.11~_repo_rules~uniq" + } + }, + "cosmos-unlink": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-W4J4XLYs4yyT+7872Fv8RbOYtAlN62r4fXU83EXYZE0=", + "output": "unlink", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-unlink" + } + }, + "unlink": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unlink//:unlink", + "name": "ape~1.0.0-beta.11~_repo_rules~unlink" + } + }, + "cosmos-unzip": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-QDT5UL43QhBK1pdJvCJdpyTMkxWQPD57wAkCziGcYP4=", + "output": "unzip", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-unzip" + } + }, + "unzip": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-unzip//:unzip", + "name": "ape~1.0.0-beta.11~_repo_rules~unzip" + } + }, + "cosmos-uptime": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-faDcCqiIAUWbsKqZdtVDIRgvV5NCmEGT8qxMzR6lGOg=", + "output": "uptime", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-uptime" + } + }, + "uptime": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uptime//:uptime", + "name": "ape~1.0.0-beta.11~_repo_rules~uptime" + } + }, + "cosmos-users": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-isx4kM5na0c1MAcDdCcTnEIVB1HBCFKy757f47UD4tA=", + "output": "users", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-users" + } + }, + "users": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-users//:users", + "name": "ape~1.0.0-beta.11~_repo_rules~users" + } + }, + "cosmos-vdir": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fQcjUl1QVmkQ4oyDkiKx/y2V+r5BDMU1oFf3w/l+tmc=", + "output": "vdir", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-vdir" + } + }, + "vdir": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-vdir//:vdir", + "name": "ape~1.0.0-beta.11~_repo_rules~vdir" + } + }, + "cosmos-verynice": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-S5D4PmAPPZ1WmQZmCAWFuIt3XdUHQoL9++LV7VTYtvI=", + "output": "verynice", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-verynice" + } + }, + "verynice": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-verynice//:verynice", + "name": "ape~1.0.0-beta.11~_repo_rules~verynice" + } + }, + "cosmos-vim": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-onKJ/dqER14qtN3DMg7U0kU9EE1qvy+d4NyDl27tdUY=", + "output": "vim", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-vim" + } + }, + "vim": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-vim//:vim", + "name": "ape~1.0.0-beta.11~_repo_rules~vim" + } + }, + "cosmos-wall": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Fx/k6dM6iCdaKuC56Q2QoxhMcC0LaHacZRfT+EWTHHA=", + "output": "wall", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-wall" + } + }, + "wall": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wall//:wall", + "name": "ape~1.0.0-beta.11~_repo_rules~wall" + } + }, + "cosmos-wc": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-XRpXEGIZ/9Ow5IrHP+dbo5dc1hHqKZ1ewqJLM1CX9bg=", + "output": "wc", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-wc" + } + }, + "wc": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wc//:wc", + "name": "ape~1.0.0-beta.11~_repo_rules~wc" + } + }, + "cosmos-wget": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-CHZFKvpbmc5AmpkazKk0H0MeYE8wTl7aANjbU9NKDb0=", + "output": "wget", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-wget" + } + }, + "wget": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-wget//:wget", + "name": "ape~1.0.0-beta.11~_repo_rules~wget" + } + }, + "cosmos-who": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-W+CBIPsR2NBc6xXbom6zyzNCvHKmE+py/iGlX5ewNok=", + "output": "who", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-who" + } + }, + "who": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-who//:who", + "name": "ape~1.0.0-beta.11~_repo_rules~who" + } + }, + "cosmos-whoami": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-yjAXVvBgVSkLRpNve2AC9srTCSdieNLjh63wFpgxM88=", + "output": "whoami", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-whoami" + } + }, + "whoami": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-whoami//:whoami", + "name": "ape~1.0.0-beta.11~_repo_rules~whoami" + } + }, + "cosmos-xargs": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-A34zn2hiDh2xMdPY82s1ghm/xzDUEXqxy6IVqOJv9vY=", + "output": "xargs", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-xargs" + } + }, + "xargs": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-xargs//:xargs", + "name": "ape~1.0.0-beta.11~_repo_rules~xargs" + } + }, + "cosmos-xz": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-84VVLEvkMFVKsNTKX8IZ90XAqebHofJ4bsy3J3f+Xe0=", + "output": "xz", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-xz" + } + }, + "xz": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-xz//:xz", + "name": "ape~1.0.0-beta.11~_repo_rules~xz" + } + }, + "cosmos-yes": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-J+N2zXEIyM9SF5Xqmpye6hISJi40Xj8343AQUL9jOiI=", + "output": "yes", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-yes" + } + }, + "yes": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-yes//:yes", + "name": "ape~1.0.0-beta.11~_repo_rules~yes" + } + }, + "cosmos-zip": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-hxobwz7sl7w+NmS45mBoFd0sVSQ3haPeoPW5S7WBUN8=", + "output": "zip", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-zip" + } + }, + "zip": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zip//:zip", + "name": "ape~1.0.0-beta.11~_repo_rules~zip" + } + }, + "cosmos-zsh": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-zYH33XZzUvk6v5DiLKe5lKTKx0IsRW7zJWIeQmhM0f4=", + "output": "zsh", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-zsh" + } + }, + "zsh": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zsh//:zsh", + "name": "ape~1.0.0-beta.11~_repo_rules~zsh" + } + }, + "cosmos-zstd": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-UQRCbSiHGWmBr2qsbnsCGQjIyhZG2ilfx9Iyxv6KbzQ=", + "output": "zstd", + "urls": [ + "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": "ape~1.0.0-beta.11~_repo_rules~cosmos-zstd" + } + }, + "zstd": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-zstd//:zstd", + "name": "ape~1.0.0-beta.11~_repo_rules~zstd" + } + }, + "cosmos-chmod": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-wr8yeoXHPf1zaytyG67uZFGXXr2P/EQfBDX2BXSEzg8=", + "output": "chmod", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/chmod", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/chmod.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-chmod" + } + }, + "chmod": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-chmod//:chmod", + "name": "ape~1.0.0-beta.11~_repo_rules~chmod" + } + }, + "cosmos-cp": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-uGcAdLFNsJ2iRWGfWkNvDDy8tq8ZuILOxPSsYAbRRWQ=", + "output": "cp", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/cp", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/cp.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-cp" + } + }, + "cp": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-cp//:cp", + "name": "ape~1.0.0-beta.11~_repo_rules~cp" + } + }, + "cosmos-dd": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-YcnILuHRDjt0KO1eK92RWERJ/kINYz984lmfSZxubFU=", + "output": "dd", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/dd", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/dd.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-dd" + } + }, + "dd": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-dd//:dd", + "name": "ape~1.0.0-beta.11~_repo_rules~dd" + } + }, + "cosmos-echo": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-Fq/mSx5iToZAUnUol34WY2hpxCJQniM6ZiKtxAzfAMM=", + "output": "echo", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/echo", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/echo.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-echo" + } + }, + "echo": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-echo//:echo", + "name": "ape~1.0.0-beta.11~_repo_rules~echo" + } + }, + "cosmos-gzip": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-fLhh2zULCabpmmthArIDpQvaYKc3LPPSCct4+/6wBSw=", + "output": "gzip", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/gzip", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/gzip.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-gzip" + } + }, + "gzip": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-gzip//:gzip", + "name": "ape~1.0.0-beta.11~_repo_rules~gzip" + } + }, + "cosmos-mkdir": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-mt2EcyVG4+Pg7C0HXbGd5IIRtoZ+LEqX9c/kq8DcsQw=", + "output": "mkdir", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mkdir", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mkdir.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mkdir" + } + }, + "mkdir": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mkdir//:mkdir", + "name": "ape~1.0.0-beta.11~_repo_rules~mkdir" + } + }, + "cosmos-mv": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-jB7HYOKnprY6cyRiHpToKrGKW4cPID7gVUXWYi1tmlM=", + "output": "mv", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/mv", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/mv.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-mv" + } + }, + "mv": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-mv//:mv", + "name": "ape~1.0.0-beta.11~_repo_rules~mv" + } + }, + "cosmos-printf": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-lES1AJ1YXEsQN8At0yZvM5w0JGsJbfN8jGeb+n3i688=", + "output": "printf", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/printf", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/printf.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-printf" + } + }, + "printf": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-printf//:printf", + "name": "ape~1.0.0-beta.11~_repo_rules~printf" + } + }, + "cosmos-rm": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-pqJTHikQR3b1pSwEcvMaS4SVmHqqUP2k6jCeKSUtDI8=", + "output": "rm", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/rm", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/rm.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-rm" + } + }, + "rm": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-rm//:rm", + "name": "ape~1.0.0-beta.11~_repo_rules~rm" + } + }, + "cosmos-uname": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-C3SggIVtotuyaYo/xQchyv0p8cQnXlyRyVAfnnDA+QU=", + "output": "uname", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.3.1/uname", + "https://cosmo.zip/pub/cosmos/v/3.3.1/bin/uname.ape" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-uname" + } + }, + "uname": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-uname//:uname", + "name": "ape~1.0.0-beta.11~_repo_rules~uname" + } + }, + "cosmos-pigz": { + "bzlFile": "@@download_utils~1.0.0-beta.2//download/file:repository.bzl", + "ruleClassName": "file", + "attributes": { + "executable": true, + "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", + "output": "pigz", + "urls": [ + "https://gitlab.arm.com/api/v4/projects/bazel%2Fape/packages/generic/cosmo.zip/3.2.4/pigz", + "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" + ], + "name": "ape~1.0.0-beta.11~_repo_rules~cosmos-pigz" + } + }, + "pigz": { + "bzlFile": "@@ape~1.0.0-beta.11//ape/entrypoint:repository.bzl", + "ruleClassName": "entrypoint", + "attributes": { + "binary": "@@ape~1.0.0-beta.11~_repo_rules~cosmos-pigz//:pigz", + "name": "ape~1.0.0-beta.11~_repo_rules~pigz" + } + } + } + } + }, + "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc" + } + }, + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": { + "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains" + } + } + } + } + }, + "@@aspect_bazel_lib~2.7.0//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "xkCrElz5fQuBa39cTFFUicDgs1jDcoxP+48jsvXon4M=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "expand_template_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_windows_amd64", + "platform": "windows_amd64" + } + }, + "copy_to_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_amd64", + "platform": "darwin_amd64", + "version": "1.7" + } + }, + "copy_to_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_arm64", + "platform": "linux_arm64", + "version": "1.7" + } + }, + "coreutils_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_arm64", + "platform": "darwin_arm64", + "version": "0.0.23" + } + }, + "copy_to_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "bsd_tar_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_arm64", + "platform": "linux_arm64" + } + }, + "copy_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "coreutils_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_darwin_amd64", + "platform": "darwin_amd64", + "version": "0.0.23" + } + }, + "coreutils_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_arm64", + "platform": "linux_arm64", + "version": "0.0.23" + } + }, + "yq_linux_s390x": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_s390x", + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq" + } + }, + "expand_template_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "copy_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "jq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_darwin_arm64", + "platform": "darwin_arm64", + "version": "1.7" + } + }, + "yq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_amd64", + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "copy_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_linux_arm64", + "platform": "linux_arm64" + } + }, + "expand_template_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_toolchains", + "user_repository_name": "expand_template" + } + }, + "bats_assert": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_assert", + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", + "urls": [ + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" + ], + "strip_prefix": "bats-assert-2.1.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "copy_to_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_linux_amd64", + "platform": "linux_amd64" + } + }, + "yq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_toolchains", + "user_repository_name": "yq" + } + }, + "bats_support": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_support", + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", + "urls": [ + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" + ], + "strip_prefix": "bats-support-0.3.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bsd_tar_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_windows_amd64", + "platform": "windows_amd64" + } + }, + "jq": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq" + } + }, + "expand_template_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "bsd_tar_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_to_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_linux_amd64", + "platform": "linux_amd64" + } + }, + "coreutils_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_linux_amd64", + "platform": "linux_amd64", + "version": "0.0.23" + } + }, + "copy_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_toolchains", + "user_repository_name": "copy_directory" + } + }, + "yq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_amd64", + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "copy_to_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "coreutils_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_toolchains", + "user_repository_name": "coreutils" + } + }, + "copy_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "bats_file": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_file", + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", + "urls": [ + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" + ], + "strip_prefix": "bats-file-0.4.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "expand_template_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_linux_arm64", + "platform": "linux_arm64" + } + }, + "jq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_linux_amd64", + "platform": "linux_amd64", + "version": "1.7" + } + }, + "bsd_tar_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_darwin_amd64", + "platform": "darwin_amd64" + } + }, + "bsd_tar_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:tar_toolchain.bzl", + "ruleClassName": "tar_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bsd_tar_toolchains", + "user_repository_name": "bsd_tar" + } + }, + "bats_toolchains": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~bats_toolchains", + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", + "urls": [ + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" + ], + "strip_prefix": "bats-core-1.10.0", + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" + } + }, + "yq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_windows_amd64", + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "jq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_windows_amd64", + "platform": "windows_amd64", + "version": "1.7" + } + }, + "expand_template_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~expand_template_freebsd_amd64", + "platform": "freebsd_amd64" + } + }, + "yq_linux_ppc64le": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_ppc64le", + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "copy_to_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_to_directory_toolchains", + "user_repository_name": "copy_to_directory" + } + }, + "jq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~jq_toolchains", + "user_repository_name": "jq" + } + }, + "copy_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_darwin_arm64", + "platform": "darwin_arm64" + } + }, + "copy_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~copy_directory_windows_amd64", + "platform": "windows_amd64" + } + }, + "yq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_darwin_arm64", + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "coreutils_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~coreutils_windows_amd64", + "platform": "windows_amd64", + "version": "0.0.23" + } + }, + "yq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~2.7.0//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "name": "aspect_bazel_lib~2.7.0~toolchains~yq_linux_arm64", + "platform": "linux_arm64", + "version": "4.25.2" + } + } + } + } + }, + "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_cc": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc" + } + }, + "local_config_cc_toolchains": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf_toolchains", + "attributes": { + "name": "bazel_tools~cc_configure_extension~local_config_cc_toolchains" + } + } + } + } + }, + "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { + "general": { + "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_sh": { + "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", + "ruleClassName": "sh_config", + "attributes": { + "name": "bazel_tools~sh_configure_extension~local_config_sh" + } + } + } + } + }, + "@@rules_java~7.1.0//java:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "remotejdk21_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" + ] + } + }, + "remote_java_tools_windows": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows", + "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip" + ] + } + }, + "remotejdk11_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" + ] + } + }, + "remotejdk11_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" + } + }, + "remotejdk11_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" + ] + } + }, + "remotejdk11_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", + "strip_prefix": "jdk-11.0.13+8", + "urls": [ + "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" + ] + } + }, + "remotejdk17_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" + ] + } + }, + "remotejdk11_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk21_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz" + ] + } + }, + "remote_java_tools_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux", + "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip" + ] + } + }, + "remotejdk21_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip" + ] + } + }, + "remotejdk21_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835", + "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk11_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk17_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk17_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" + ] + } + }, + "remote_java_tools_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64", + "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip" + ] + } + }, + "remotejdk17_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk21_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" + } + }, + "local_jdk": { + "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl", + "ruleClassName": "_local_java_repository_rule", + "attributes": { + "name": "rules_java~7.1.0~toolchains~local_jdk", + "java_home": "", + "version": "", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" + } + }, + "remote_java_tools_darwin_x86_64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64", + "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip" + ] + } + }, + "remote_java_tools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remote_java_tools", + "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip" + ] + } + }, + "remotejdk17_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk17_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk11_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk21_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo", + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" + } + } + } + } + }, + "@@toolchain_utils~1.0.0-beta.9//:MODULE.bazel%_repo_rules": { + "general": { + "bzlTransitiveDigest": "EyT/sMAKLPArwKQR7yfwzX0Jj6UkbNPq+yyLByJVyUY=", + "accumulatedFileDigests": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/local/triplet:repository.bzl", + "ruleClassName": "triplet", + "attributes": { + "name": "toolchain_utils~1.0.0-beta.9~_repo_rules~local" + } + }, + "launcher": { + "bzlFile": "@@toolchain_utils~1.0.0-beta.9//toolchain/launcher:repository.bzl", + "ruleClassName": "launcher", + "attributes": { + "name": "toolchain_utils~1.0.0-beta.9~_repo_rules~launcher" + } + } + } + } + } + } } diff --git a/e2e/MODULE.bazel.lock b/e2e/MODULE.bazel.lock index 3b88323..4ce6256 100644 --- a/e2e/MODULE.bazel.lock +++ b/e2e/MODULE.bazel.lock @@ -11816,7 +11816,7 @@ "moduleExtensions": { "@@ape~1.0.0-beta.11//:MODULE.bazel%_repo_rules": { "general": { - "bzlTransitiveDigest": "pPlw3Dcew6odD88G4yzy3pJxQQVT1YHwGbImNH4voCY=", + "bzlTransitiveDigest": "Eb1Xl7COaA7o2xZRXuWoU8oqNKYaG3jNe5NZjqS8dmk=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { @@ -16112,7 +16112,7 @@ }, "@@rules_coreutils~1.0.0-beta.1//:MODULE.bazel%_repo_rules": { "general": { - "bzlTransitiveDigest": "QYg9cENRlVIyQWUP8sqx7qnNYYyVopSZwiYlGZeazn8=", + "bzlTransitiveDigest": "IF5Hxe4PJUTAHHbk22XkvaeQJe/ELeNXu0QuEfvgOnE=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { -- GitLab