diff --git a/.bazelrc b/.bazelrc index d394b1db6df8022855b2cba23ee421e93cc78b37..2d4f8ba66578f8d932e77cb31691ebecfc4aab7a 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,6 @@ -# Enable `bzlmod` -common --enable_bzlmod +# Pre-release registry +common --registry=https://bcr.bazel.build +common --registry=https://gitlab.arm.com/bazel/rules_git/-/releases/v1.0.0-alpha.6/downloads/ # Build cache build --experimental_guard_against_concurrent_changes diff --git a/.bazelversion b/.bazelversion index 66ce77b7ead5c03f8d614495285190635c0889d9..643916c03f1f6016eb9c394229bd9e3b343b2379 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -7.0.0 +7.3.1 diff --git a/BUILD.bazel b/BUILD.bazel index 50536f0fa903e84d346d14a0cdb11193a3ba7343..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,9 +0,0 @@ -load("@rules_diff//diff/file/test:defs.bzl", "diff_file_test") - -# TODO: remove when we have *real* testing -diff_file_test( - name = "placeholder", - size = "small", - a = ":MODULE.bazel", - b = ":MODULE.bazel", -) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21e8d81a991438e0f49d3a043969afeebc207d54..b7dabb2213651023bfbd7c6d5fbfa9c2d46c9672 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,6 +8,12 @@ $ bazelisk test //... ``` +To test against a local `rules_git` add a `.bazelrc.user`: + +``` +common --override_module=rules_git= +``` + ## Gazelle Update `BUILD.bazel` files with: diff --git a/MODULE.bazel b/MODULE.bazel index 71c2ee3c464e2f19c0b27c659fd7b2f6744ae131..b6b6bc12422622d36f7b281bc5b311a87ab2e94a 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -6,14 +6,17 @@ module( ], ) -bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.4") -bazel_dep(name = "rules_coreutils", version = "1.0.0-alpha.8") bazel_dep(name = "rules_go", version = "0.48.0") -bazel_dep(name = "rules_diff", version = "1.0.0-alpha.3") -bazel_dep(name = "hermetic_cc_toolchain", version = "3.0.0") bazel_dep(name = "gazelle", version = "0.37.0") bazel_dep(name = "circl", version = "1.3.8") +bazel_dep(name = "download_utils", version = "1.0.0-beta.2", dev_dependency = True) +bazel_dep(name = "hermetic_cc_toolchain", version = "3.1.0", dev_dependency = True) +bazel_dep(name = "rules_diff", version = "1.0.0-beta.4", dev_dependency = True) +bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.6", dev_dependency = True) +bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.13", dev_dependency = True) +bazel_dep(name = "rules_git", version = "1.0.0-alpha.6", dev_dependency = True) + go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") go_deps.from_file(go_mod = "//:go.mod") use_repo( @@ -39,3 +42,98 @@ register_toolchains( "@zig_sdk//toolchain:darwin_amd64", "@zig_sdk//toolchain:darwin_arm64", ) + +# Download Bazelisk to build `bazel-git` for testing +download_file = use_repo_rule("@download_utils//download/file:defs.bzl", "download_file") + +[ + download_file( + name = name.removesuffix(".exe"), + executable = True, + integrity = integrity, + links = { + "bazelisk": "entrypoint", + }, + output = "bazelisk", + urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/{}".format(name)], + ) + for name, integrity in ( + ("bazelisk-linux-amd64", "sha256-2a8fqAjAUpdTw779p1EjI2pxHZcdNIWjkFBxIhSHc6M="), + ("bazelisk-linux-arm64", "sha256-Rn7DghrKXieMhXC3wl4N/BoGHShzvonkomaq9IgUhCY="), + ("bazelisk-darwin-amd64", "sha256-UaYijVFwTGVt+fzqytGNZPJluXOQWz79z4pQS2h1Rb8="), + ("bazelisk-darwin-arm64", "sha256-KXUzQcDdw1kx+yQOJH+7oLg++BvMwkM90HU2PsAqZ6Y="), + ("bazelisk-windows-amd64.exe", "sha256-QXXOfvS1UvsX6TzkmiRWedwmo1zy+8fDFG2spv/HqB4="), + ) +] + +# Make sure we select the correct `bazelisk` for the host +select = use_repo_rule("@toolchain_utils//toolchain/local/select:defs.bzl", "toolchain_local_select") + +select( + name = "bazelisk", + map = { + "amd64-linux": "@bazelisk-linux-amd64", + "arm64-linux": "@bazelisk-linux-arm64", + "arm64-macos": "@bazelisk-darwin-arm64", + "amd64-macos": "@bazelisk-darwin-amd64", + "amd64-windows": "@bazelisk-windows-amd64", + }, +) + +# Output base for the repository context build +base = use_repo_rule("//test/base:defs.bzl", "base") + +base(name = "base") + +# Build `bazel-git` for the current host +build = use_repo_rule("//test/build:defs.bzl", "build") + +build( + name = "git", + srcs = [ + ".bazelrc", + "BUILD.bazel", + "MODULE.bazel", + "cmd/bazel-git/BUILD.bazel", + "cmd/bazel-git/archive.go", + "cmd/bazel-git/cat_file.go", + "cmd/bazel-git/checkout.go", + "cmd/bazel-git/config.go", + "cmd/bazel-git/error.go", + "cmd/bazel-git/fetch.go", + "cmd/bazel-git/init.go", + "cmd/bazel-git/ls_remote.go", + "cmd/bazel-git/ls_tree.go", + "cmd/bazel-git/main.go", + "cmd/bazel-git/pure.bzl", + "cmd/bazel-git/show.go", + "go.mod", + "go.sum", + "toolchain/git/BUILD.bazel", + ], + out = "git", + target = "//cmd/bazel-git", +) + +# Register the local `bazel-git` as a toolchain +register_toolchains("//toolchain/...") + +# Perform a fetch +fetch = use_repo_rule("@rules_git//git/fetch:defs.bzl", "git_fetch") + +fetch( + name = "github-git-git-2.43.0", + git = "@git", + reference = "refs/tags/v2.43.0", + remote = "https://github.com/git/git.git", +) + +fetch( + name = "github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2", + commit = "c089584ac8dedc3aa7c2c404839bc098050298a2", + git = "@git", + remote = "https://github.com/git/git.git", +) + +export = use_extension("@toolchain_utils//toolchain/export:defs.bzl", "toolchain_export") +use_repo(export, "coreutils") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index e3ddd7849da3f96bd6020b259cbd895c06bb2e27..d26ccefafedbfeadaa4f50875e51d8de65ae47d6 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,18473 +1,203 @@ { - "lockFileVersion": 3, - "moduleFileHash": "f56adfaa2d94fcd0ee2e1a2624508f97387035f438707d23b1bca5cacb2f45cb", - "flags": { - "cmdRegistries": [ - "https://bcr.bazel.build/" - ], - "cmdModuleOverrides": {}, - "allowedYankedVersions": [], - "envVarAllowedYankedVersions": "", - "ignoreDevDependency": false, - "directDependenciesMode": "WARNING", - "compatibilityMode": "ERROR" + "lockFileVersion": 11, + "registryFileHashes": { + "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", + "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589", + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/source.json": "7e3a9adf473e9af076ae485ed649d5641ad50ec5c11718103f34de03170d94ad", + "https://bcr.bazel.build/modules/ape/1.0.0-beta.12/MODULE.bazel": "e75be27b37a2f7cf83dbeb497aeac93f8da9aa55fc2b35a9a1cb46db9b7f8885", + "https://bcr.bazel.build/modules/ape/1.0.0-beta.12/source.json": "4b9e00b30d41ff209d7deddba1fbb4538cdfc7a54b4e07e607134ccc147e6a29", + "https://bcr.bazel.build/modules/ape/1.0.0-beta.6/MODULE.bazel": "247bcdbc358206c37ce8bf1c850115002c6560570d96f9ac8a79dd810b18ea85", + "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef", + "https://bcr.bazel.build/modules/apple_support/1.5.0/source.json": "eb98a7627c0bc486b57f598ad8da50f6625d974c8f723e9ea71bd39f709c9862", + "https://bcr.bazel.build/modules/bazel_features/1.1.0/MODULE.bazel": "cfd42ff3b815a5f39554d97182657f8c4b9719568eb7fded2b9135f084bf760b", + "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", + "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", + "https://bcr.bazel.build/modules/bazel_features/1.13.0/MODULE.bazel": "c14c33c7c3c730612bdbe14ebbb5e61936b6f11322ea95a6e91cd1ba962f94df", + "https://bcr.bazel.build/modules/bazel_features/1.13.0/source.json": "b01f6aaaf93527ff4267421ef416debbd89b3166b70af5c89400c6a95a89c133", + "https://bcr.bazel.build/modules/bazel_features/1.4.1/MODULE.bazel": "e45b6bb2350aff3e442ae1111c555e27eac1d915e77775f6fdc4b351b758b5d7", + "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel": "8f679097876a9b609ad1f60249c49d68bfab783dd9be012faf9d82547b14815a", + "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8", + "https://bcr.bazel.build/modules/bazel_skylib/1.2.0/MODULE.bazel": "44fe84260e454ed94ad326352a698422dbe372b21a1ac9f3eab76eb531223686", + "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a", + "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5", + "https://bcr.bazel.build/modules/bazel_skylib/1.4.2/MODULE.bazel": "3bd40978e7a1fac911d5989e6b09d8f64921865a45822d8b09e815eaa726a651", + "https://bcr.bazel.build/modules/bazel_skylib/1.5.0/MODULE.bazel": "32880f5e2945ce6a03d1fbd588e9198c0a959bb42297b2cfaf1685b7bc32e138", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/source.json": "082ed5f9837901fada8c68c2f3ddc958bb22b6d654f71dd73f3df30d45d4b749", + "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84", + "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8", + "https://bcr.bazel.build/modules/circl/1.3.8/MODULE.bazel": "1caeccc623ec319444e58040ac600d02ca723905155276fa1f1dd9744e580780", + "https://bcr.bazel.build/modules/circl/1.3.8/source.json": "5ff347710530a6f4d8b364d251618f883f0e9210ae474726c6da7f69c64fb4e3", + "https://bcr.bazel.build/modules/download_utils/1.0.0-beta.2/MODULE.bazel": "bced1551849a5d1ca00b985c0d267ab690af840f04c685f2c62f40e92f66fac0", + "https://bcr.bazel.build/modules/download_utils/1.0.0-beta.2/source.json": "0ab7ebbc57f39a7fe96190e01fe9773482bc4e3d465e9cd9b239bb44ad57791d", + "https://bcr.bazel.build/modules/gazelle/0.32.0/MODULE.bazel": "b499f58a5d0d3537f3cf5b76d8ada18242f64ec474d8391247438bf04f58c7b8", + "https://bcr.bazel.build/modules/gazelle/0.33.0/MODULE.bazel": "a13a0f279b462b784fb8dd52a4074526c4a2afe70e114c7d09066097a46b3350", + "https://bcr.bazel.build/modules/gazelle/0.34.0/MODULE.bazel": "abdd8ce4d70978933209db92e436deb3a8b737859e9354fb5fd11fb5c2004c8a", + "https://bcr.bazel.build/modules/gazelle/0.36.0/MODULE.bazel": "e375d5d6e9a6ca59b0cb38b0540bc9a05b6aa926d322f2de268ad267a2ee74c0", + "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel": "d1327ba0907d0275ed5103bfbbb13518f6c04955b402213319d0d6c0ce9839d4", + "https://bcr.bazel.build/modules/gazelle/0.37.0/source.json": "b3adc10e2394e7f63ea88fb1d622d4894bfe9ec6961c493ae9a887723ab16831", + "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4", + "https://bcr.bazel.build/modules/googletest/1.11.0/source.json": "c73d9ef4268c91bd0c1cd88f1f9dfa08e814b1dbe89b5f594a9f08ba0244d206", + "https://bcr.bazel.build/modules/hermetic_cc_toolchain/3.1.0/MODULE.bazel": "ea4b3a25a9417a7db57a8a2f9ebdee91d679823c6274b482b817ed128d81c594", + "https://bcr.bazel.build/modules/hermetic_cc_toolchain/3.1.0/source.json": "9d1df0459caefdf41052d360469922a73e219f67c8ce4da0628cc604469822b9", + "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel": "8cb8efaf200bdeb2150d93e162c40f388529a25852b332cec879373771e48ed5", + "https://bcr.bazel.build/modules/platforms/0.0.10/source.json": "f22828ff4cf021a6b577f1bf6341cb9dcd7965092a439f64fc1bb3b7a5ae4bd5", + "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee", + "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37", + "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615", + "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814", + "https://bcr.bazel.build/modules/platforms/0.0.8/MODULE.bazel": "9f142c03e348f6d263719f5074b21ef3adf0b139ee4c5133e2aa35664da9eb2d", + "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc", + "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7", + "https://bcr.bazel.build/modules/protobuf/21.7/source.json": "bbe500720421e582ff2d18b0802464205138c06056f443184de39fbb8187b09b", + "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", + "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573", + "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", + "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", + "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c", + "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e", + "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5", + "https://bcr.bazel.build/modules/rules_cc/0.0.9/source.json": "1f1ba6fea244b616de4a554a0f4983c91a9301640c8fe0dd1d410254115c8430", + "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.4/MODULE.bazel": "25a6c24ef03800cae2271b18dae00d2afd0e06a5756c11097e79303b9594cb12", + "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.6/MODULE.bazel": "d767c0dce8cca10f507ff4df59b6be1023b155e9aa92dc075f564a2ed3713615", + "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-beta.6/source.json": "5970522e4551e83d36886874b2ff7fc6718884670b6961bcf298aaaa608251c5", + "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.4/MODULE.bazel": "329d29a12ae8e4b2cfac5b3d9c25a7a3effc3f2dd3ccc15ae21926a1aaf655fc", + "https://bcr.bazel.build/modules/rules_diff/1.0.0-beta.4/source.json": "ec721689f41990897da4cd4f7540bafdad93bb9443e213c52d6850f17b088224", + "https://bcr.bazel.build/modules/rules_git/1.0.0-alpha.6/MODULE.bazel": "not found", + "https://bcr.bazel.build/modules/rules_go/0.41.0/MODULE.bazel": "55861d8e8bb0e62cbd2896f60ff303f62ffcb0eddb74ecb0e5c0cbe36fc292c8", + "https://bcr.bazel.build/modules/rules_go/0.42.0/MODULE.bazel": "8cfa875b9aa8c6fce2b2e5925e73c1388173ea3c32a0db4d2b4804b453c14270", + "https://bcr.bazel.build/modules/rules_go/0.46.0/MODULE.bazel": "3477df8bdcc49e698b9d25f734c4f3a9f5931ff34ee48a2c662be168f5f2d3fd", + "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel": "d00ebcae0908ee3f5e6d53f68677a303d6d59a77beef879598700049c3980a03", + "https://bcr.bazel.build/modules/rules_go/0.48.0/source.json": "895dc1698fd7c5959f92868f3a87156ad1ed8d876668bfa918fa0a623fb1eb22", + "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", + "https://bcr.bazel.build/modules/rules_java/7.6.5/MODULE.bazel": "481164be5e02e4cab6e77a36927683263be56b7e36fef918b458d7a8a1ebadb1", + "https://bcr.bazel.build/modules/rules_java/7.6.5/source.json": "a805b889531d1690e3c72a7a7e47a870d00323186a9904b36af83aa3d053ee8d", + "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", + "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/source.json": "a075731e1b46bc8425098512d038d416e966ab19684a10a34f4741295642fc35", + "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0", + "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d", + "https://bcr.bazel.build/modules/rules_license/0.0.7/source.json": "355cc5737a0f294e560d52b1b7a6492d4fff2caf0bef1a315df5a298fca2d34a", + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc", + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/source.json": "c2557066e0c0342223ba592510ad3d812d4963b9024831f7f66fd0584dd8c66c", + "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06", + "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7", + "https://bcr.bazel.build/modules/rules_proto/6.0.0/MODULE.bazel": "b531d7f09f58dce456cd61b4579ce8c86b38544da75184eadaf0a7cb7966453f", + "https://bcr.bazel.build/modules/rules_proto/6.0.0/source.json": "de77e10ff0ab16acbf54e6b46eecd37a99c5b290468ea1aee6e95eb1affdaed7", + "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f", + "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7", + "https://bcr.bazel.build/modules/rules_python/0.22.1/source.json": "57226905e783bae7c37c2dd662be078728e48fa28ee4324a7eabcafb5a43d014", + "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", + "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8", + "https://bcr.bazel.build/modules/stardoc/0.5.1/source.json": "a96f95e02123320aa015b956f29c00cb818fa891ef823d55148e1a362caacf29", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.12/MODULE.bazel": "947cf935fa609c91b05bd8c8c1be38b9e10b7bc8949cf3092ee416ed30995078", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.13/MODULE.bazel": "8fa38d6dfa905bea519caca92bfb5571dd2d70b45e307674e33692c7a7c16ace", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.13/source.json": "ca58149525f45ec454b0f12c09efaa6edef163784631f415b65322650307404d", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.9/MODULE.bazel": "9a8edfa6905229b899225489cbd6db36f073d9455c77238bd6ae6c52da5256d8", + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43", + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/source.json": "f1ef7d3f9e0e26d4b23d1c39b5f5de71f584dd7d1b4ef83d9bbba6ec7a6a6459", + "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0", + "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/MODULE.bazel": "af322bc08976524477c79d1e45e241b6efbeb918c497e8840b8ab116802dda79", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/source.json": "2be409ac3c7601245958cd4fcdff4288be79ed23bd690b4b951f500d54ee6e7d", + "https://gitlab.arm.com/bazel/rules_git/-/releases/v1.0.0-alpha.6/downloads/bazel_registry.json": "not found", + "https://gitlab.arm.com/bazel/rules_git/-/releases/v1.0.0-alpha.6/downloads/modules/rules_git/1.0.0-alpha.6/MODULE.bazel": "d648c225da48e264c6e5df224ad511a119bc5254369625c9751a0aa014fa19f7", + "https://gitlab.arm.com/bazel/rules_git/-/releases/v1.0.0-alpha.6/downloads/modules/rules_git/1.0.0-alpha.6/source.json": "537b8576867ceda40a9a8bdfdcc3c83849114d63680e028554cecabcf880e65f" }, - "localOverrideHashes": { - "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787" - }, - "moduleDepGraph": { - "": { - "name": "bazel-git", - "version": "0.0.0", - "key": "", - "repoName": "bazel-git", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@zig_sdk//toolchain:darwin_amd64", - "@zig_sdk//toolchain:darwin_arm64" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@gazelle//:extensions.bzl", - "extensionName": "go_deps", - "usingModule": "", - "location": { - "file": "@@//:MODULE.bazel", - "line": 17, - "column": 24 - }, - "imports": { - "com_github_bmatcuk_doublestar_v4": "com_github_bmatcuk_doublestar_v4", - "com_github_go_git_go_billy_v5": "com_github_go_git_go_billy_v5", - "com_github_go_git_go_git_v5": "com_github_go_git_go_git_v5", - "com_github_jessevdk_go_flags": "com_github_jessevdk_go_flags", - "com_github_kevinburke_ssh_config": "com_github_kevinburke_ssh_config", - "com_github_mattn_go_isatty": "com_github_mattn_go_isatty", - "com_github_natefinch_atomic": "com_github_natefinch_atomic", - "com_github_stretchr_testify": "com_github_stretchr_testify" + "selectedYankedVersions": {}, + "moduleExtensions": { + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "PjIds3feoYE8SGbbIq2SFTZy3zmxeO2tQevJZNDo7iY=", + "usagesDigest": "aLmqbvowmHkkBPve05yyDNGN7oh7QE9kBADr3QIZTZs=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": {} }, - "devImports": [], - "tags": [ - { - "tagName": "from_file", - "attributeValues": { - "go_mod": "//:go.mod" - }, - "devDependency": false, - "location": { - "file": "@@//:MODULE.bazel", - "line": 18, - "column": 18 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": {} + } }, - { - "extensionBzlFile": "@hermetic_cc_toolchain//toolchain:ext.bzl", - "extensionName": "toolchains", - "usingModule": "", - "location": { - "file": "@@//:MODULE.bazel", - "line": 35, - "column": 27 - }, - "imports": { - "zig_sdk": "zig_sdk" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", - "rules_coreutils": "rules_coreutils@1.0.0-alpha.8", - "rules_go": "rules_go@0.48.0", - "rules_diff": "rules_diff@1.0.0-alpha.3", - "hermetic_cc_toolchain": "hermetic_cc_toolchain@3.0.0", - "gazelle": "gazelle@0.37.0", - "circl": "circl@1.3.8", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" + "recordedRepoMappingEntries": [ + [ + "apple_support~", + "bazel_tools", + "bazel_tools" + ] + ] } }, - "toolchain_utils@1.0.0-beta.4": { - "name": "toolchain_utils", - "version": "1.0.0-beta.4", - "key": "toolchain_utils@1.0.0-beta.4", - "repoName": "toolchain_utils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "toolchain_utils@1.0.0-beta.4", - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "local": "local", - "launcher": "launcher" - }, - "devImports": [], - "tags": [ - { - "tagName": "//toolchain/local/triplet:defs.bzl%toolchain_local_triplet", - "attributeValues": { - "name": "local" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", - "line": 15, - "column": 8 - } - }, - { - "tagName": "//toolchain/launcher:repository.bzl%launcher", - "attributeValues": { - "name": "launcher" + "@@hermetic_cc_toolchain~//toolchain:ext.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "L0EDVXQ1bqh5CxjodeVieW+SjWsjwxFXYEKhUNgMY50=", + "usagesDigest": "qxpVpnLFgxnrdTFeYkoUdOB8/Cw5i5hHU7t/03deh2o=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "zig_sdk": { + "bzlFile": "@@hermetic_cc_toolchain~//toolchain:defs.bzl", + "ruleClassName": "zig_repository", + "attributes": { + "version": "0.12.0", + "url_formats": [ + "https://mirror.bazel.build/ziglang.org/download/{version}/zig-{host_platform}-{version}.{_ext}", + "https://ziglang.org/download/{version}/zig-{host_platform}-{version}.{_ext}" + ], + "host_platform_sha256": { + "linux-aarch64": "754f1029484079b7e0ca3b913a0a2f2a6afd5a28990cb224fe8845e72f09de63", + "linux-x86_64": "c7ae866b8a76a568e2d5cfd31fe89cdb629bdd161fdd5018b29a4a0a17045cad", + "macos-aarch64": "294e224c14fd0822cfb15a35cf39aa14bd9967867999bf8bdfe3db7ddec2a27f", + "macos-x86_64": "4d411bf413e7667821324da248e8589278180dbc197f4f282b7dbb599a689311", + "windows-aarch64": "04c6b92689241ca7a8a59b5f12d2ca2820c09d5043c3c4808b7e93e41c7bf97b", + "windows-x86_64": "2199eb4c2000ddb1fba85ba78f1fcf9c1fb8b3e57658f6a627a8e513131893f5" }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel", - "line": 21, - "column": 9 + "host_platform_ext": { + "linux-aarch64": "tar.xz", + "linux-x86_64": "tar.xz", + "macos-aarch64": "tar.xz", + "macos-x86_64": "tar.xz", + "windows-x86_64": "zip" } } + } + }, + "recordedRepoMappingEntries": [ + [ + "hermetic_cc_toolchain~", + "bazel_tools", + "bazel_tools" ], - "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.4", - "urls": [ - "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.4/downloads/src.tar.gz" - ], - "integrity": "sha512-GVDim8MC4/zegiD97LbDE2R4nYzsr1gjbx5KJG0VNNe27fEm00gv9o7x7fjxj42g//RU8yDqAOUuOmhuxvF+Kw==", - "strip_prefix": "toolchain_utils-v1.0.0-beta.4", - "remote_patches": {}, - "remote_patch_strip": 0 - } + [ + "hermetic_cc_toolchain~", + "hermetic_cc_toolchain", + "hermetic_cc_toolchain~" + ] + ] } }, - "rules_coreutils@1.0.0-alpha.8": { - "name": "rules_coreutils", - "version": "1.0.0-alpha.8", - "key": "rules_coreutils@1.0.0-alpha.8", - "repoName": "rules_coreutils", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//coreutils/toolchain/..." - ], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "rules_coreutils@1.0.0-alpha.8", - "location": { - "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-alpha.8/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "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": [ - { - "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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8/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-alpha.8", - "location": { - "file": "https://bcr.bazel.build/modules/rules_coreutils/1.0.0-alpha.8/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-alpha.8/MODULE.bazel", - "line": 52, - "column": 15 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", - "download_utils": "download_utils@1.0.0-beta.1", - "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-alpha.8", - "urls": [ - "https://gitlab.arm.com/bazel/rules_coreutils/-/releases/v1.0.0-alpha.8/downloads/src.tar.gz" - ], - "integrity": "sha512-uXUHM6aqwAHX3BAl3oxtjVFGz3kqr8NqmGMYgzjERCIeD3AHSa8HOviWmoPqenzysvrqx4bUoHWNRAyG9i5Y3Q==", - "strip_prefix": "rules_coreutils-v1.0.0-alpha.8", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_go@0.48.0": { - "name": "rules_go", - "version": "0.48.0", - "key": "rules_go@0.48.0", - "repoName": "io_bazel_rules_go", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@go_toolchains//:all" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl", - "extensionName": "go_sdk", - "usingModule": "rules_go@0.48.0", - "location": { - "file": "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel", - "line": 16, - "column": 23 - }, - "imports": { - "go_toolchains": "go_toolchains", - "io_bazel_rules_nogo": "io_bazel_rules_nogo" - }, - "devImports": [], - "tags": [ - { - "tagName": "download", - "attributeValues": { - "name": "go_default_sdk", - "version": "1.21.8" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel", - "line": 17, - "column": 16 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@gazelle//:extensions.bzl", - "extensionName": "go_deps", - "usingModule": "rules_go@0.48.0", - "location": { - "file": "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel", - "line": 32, - "column": 24 - }, - "imports": { - "com_github_gogo_protobuf": "com_github_gogo_protobuf", - "com_github_golang_mock": "com_github_golang_mock", - "com_github_golang_protobuf": "com_github_golang_protobuf", - "org_golang_google_genproto": "org_golang_google_genproto", - "org_golang_google_grpc": "org_golang_google_grpc", - "org_golang_google_grpc_cmd_protoc_gen_go_grpc": "org_golang_google_grpc_cmd_protoc_gen_go_grpc", - "org_golang_google_protobuf": "org_golang_google_protobuf", - "org_golang_x_net": "org_golang_x_net", - "org_golang_x_tools": "org_golang_x_tools", - "bazel_gazelle_go_repository_config": "bazel_gazelle_go_repository_config" - }, - "devImports": [], - "tags": [ - { - "tagName": "from_file", - "attributeValues": { - "go_mod": "//:go.mod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel", - "line": 33, - "column": 18 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "io_bazel_rules_go_bazel_features": "bazel_features@1.9.1", - "bazel_skylib": "bazel_skylib@1.5.0", - "platforms": "platforms@0.0.8", - "rules_proto": "rules_proto@6.0.0", - "com_google_protobuf": "protobuf@3.19.6", - "gazelle": "gazelle@0.37.0", - "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_go~0.48.0", - "urls": [ - "https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip" - ], - "integrity": "sha256-M6zErg9wUC20uJPJ/B3Xqb+ZjCPn/yxFF3QdQEmpdvg=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_diff@1.0.0-alpha.3": { - "name": "rules_diff", - "version": "1.0.0-alpha.3", - "key": "rules_diff@1.0.0-alpha.3", - "repoName": "rules_diff", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "//diff/toolchain/..." - ], - "extensionUsages": [ - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "rules_diff@1.0.0-alpha.3", - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 13, - "column": 23 - }, - "imports": { - "ape-diff": "ape-diff", - "diff": "diff", - "ape-diff3": "ape-diff3", - "diff3": "diff3", - "ape-sdiff": "ape-sdiff", - "sdiff": "sdiff", - "ape-cmp": "ape-cmp", - "cmp": "cmp" - }, - "devImports": [], - "tags": [ - { - "tagName": "symlink", - "attributeValues": { - "name": "diff", - "target": "@ape-diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 20, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "diff3", - "target": "@ape-diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 20, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "sdiff", - "target": "@ape-sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 20, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "cmp", - "target": "@ape-cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 20, - "column": 23 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "rules_diff@1.0.0-alpha.3", - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "resolved-diff": "resolved-diff", - "resolved-diff3": "resolved-diff3", - "resolved-sdiff": "resolved-sdiff", - "resolved-cmp": "resolved-cmp" - }, - "devImports": [], - "tags": [ - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//diff/toolchain/diff:type", - "name": "resolved-diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 25, - "column": 17 - } - }, - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//diff/toolchain/diff3:type", - "name": "resolved-diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 25, - "column": 17 - } - }, - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//diff/toolchain/sdiff:type", - "name": "resolved-sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 25, - "column": 17 - } - }, - { - "tagName": "@toolchain_utils//toolchain/resolved:defs.bzl%toolchain_resolved", - "attributeValues": { - "toolchain_type": "//diff/toolchain/cmp:type", - "name": "resolved-cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/rules_diff/1.0.0-alpha.3/MODULE.bazel", - "line": 25, - "column": 17 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", - "ape": "ape@1.0.0-alpha.3", - "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_diff~1.0.0-alpha.3", - "urls": [ - "https://gitlab.arm.com/bazel/rules_diff/-/releases/v1.0.0-alpha.3/downloads/src.tar.gz" - ], - "integrity": "sha512-g8eVWXWcRpkiWjxs54Zua9tjdX/mTZV2yWslBrFqftvHDaCLxJQ1uXb4fRqC3pM1XKFouelMkviYZSMJaVAT8w==", - "strip_prefix": "rules_diff-v1.0.0-alpha.3", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "hermetic_cc_toolchain@3.0.0": { - "name": "hermetic_cc_toolchain", - "version": "3.0.0", - "key": "hermetic_cc_toolchain@3.0.0", - "repoName": "hermetic_cc_toolchain", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@zig_sdk//toolchain:linux_amd64_gnu.2.28", - "@zig_sdk//toolchain:linux_arm64_gnu.2.28", - "@zig_sdk//toolchain:windows_amd64", - "@zig_sdk//toolchain:windows_arm64", - "@zig_sdk//libc_aware/toolchain:linux_amd64_gnu.2.28", - "@zig_sdk//libc_aware/toolchain:linux_amd64_gnu.2.31", - "@zig_sdk//libc_aware/toolchain:linux_amd64_musl", - "@zig_sdk//libc_aware/toolchain:linux_arm64_gnu.2.28", - "@zig_sdk//libc_aware/toolchain:linux_arm64_musl" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@hermetic_cc_toolchain//toolchain:ext.bzl", - "extensionName": "toolchains", - "usingModule": "hermetic_cc_toolchain@3.0.0", - "location": { - "file": "https://bcr.bazel.build/modules/hermetic_cc_toolchain/3.0.0/MODULE.bazel", - "line": 31, - "column": 27 - }, - "imports": { - "zig_sdk": "zig_sdk" - }, - "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": "hermetic_cc_toolchain~3.0.0", - "urls": [ - "https://github.com/uber/hermetic_cc_toolchain/releases/download/v3.0.0/hermetic_cc_toolchain-v3.0.0.tar.gz" - ], - "integrity": "sha256-/gC9Em5XpMP+xO+mIL8HTj0fH71wt1ETylagENenDZM=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "gazelle@0.37.0": { - "name": "gazelle", - "version": "0.37.0", - "key": "gazelle@0.37.0", - "repoName": "bazel_gazelle", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl", - "extensionName": "go_sdk", - "usingModule": "gazelle@0.37.0", - "location": { - "file": "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel", - "line": 13, - "column": 23 - }, - "imports": { - "go_host_compatible_sdk_label": "go_host_compatible_sdk_label" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_gazelle//internal/bzlmod:non_module_deps.bzl", - "extensionName": "non_module_deps", - "usingModule": "gazelle@0.37.0", - "location": { - "file": "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel", - "line": 21, - "column": 32 - }, - "imports": { - "bazel_gazelle_go_repository_cache": "bazel_gazelle_go_repository_cache", - "bazel_gazelle_go_repository_tools": "bazel_gazelle_go_repository_tools", - "bazel_gazelle_is_bazel_module": "bazel_gazelle_is_bazel_module" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_gazelle//:extensions.bzl", - "extensionName": "go_deps", - "usingModule": "gazelle@0.37.0", - "location": { - "file": "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel", - "line": 29, - "column": 24 - }, - "imports": { - "com_github_bazelbuild_buildtools": "com_github_bazelbuild_buildtools", - "com_github_bmatcuk_doublestar_v4": "com_github_bmatcuk_doublestar_v4", - "com_github_fsnotify_fsnotify": "com_github_fsnotify_fsnotify", - "com_github_google_go_cmp": "com_github_google_go_cmp", - "com_github_pmezard_go_difflib": "com_github_pmezard_go_difflib", - "org_golang_x_mod": "org_golang_x_mod", - "org_golang_x_sync": "org_golang_x_sync", - "org_golang_x_tools": "org_golang_x_tools", - "org_golang_x_tools_go_vcs": "org_golang_x_tools_go_vcs", - "bazel_gazelle_go_repository_config": "bazel_gazelle_go_repository_config", - "com_github_golang_protobuf": "com_github_golang_protobuf", - "org_golang_google_protobuf": "org_golang_google_protobuf" - }, - "devImports": [], - "tags": [ - { - "tagName": "from_file", - "attributeValues": { - "go_mod": "//:go.mod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel", - "line": 30, - "column": 18 - } - }, - { - "tagName": "module", - "attributeValues": { - "path": "golang.org/x/tools", - "sum": "h1:k8NLag8AGHnn+PHbl7g43CtqZAwG60vZkLqgyZgIHgQ=", - "version": "v0.18.0" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel", - "line": 34, - "column": 15 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_features": "bazel_features@1.9.1", - "bazel_skylib": "bazel_skylib@1.5.0", - "com_google_protobuf": "protobuf@3.19.6", - "io_bazel_rules_go": "rules_go@0.48.0", - "rules_proto": "rules_proto@6.0.0", - "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": "gazelle~0.37.0", - "urls": [ - "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.37.0/bazel-gazelle-v0.37.0.tar.gz" - ], - "integrity": "sha256-12v3pg/YsFBEQJDfooN6Tq+YKeEWVhjuNdzspcvfWNU=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "circl@1.3.8": { - "name": "circl", - "version": "1.3.8", - "key": "circl@1.3.8", - "repoName": "circl", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "@gazelle//:extensions.bzl", - "extensionName": "go_deps", - "usingModule": "circl@1.3.8", - "location": { - "file": "https://bcr.bazel.build/modules/circl/1.3.8/MODULE.bazel", - "line": 10, - "column": 24 - }, - "imports": { - "org_golang_x_sys": "org_golang_x_sys", - "com_github_bwesterb_go_ristretto": "com_github_bwesterb_go_ristretto", - "org_golang_x_crypto": "org_golang_x_crypto" - }, - "devImports": [], - "tags": [ - { - "tagName": "from_file", - "attributeValues": { - "go_mod": "//:go.mod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/circl/1.3.8/MODULE.bazel", - "line": 11, - "column": 18 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "gazelle": "gazelle@0.37.0", - "rules_cc": "rules_cc@0.0.9", - "rules_go": "rules_go@0.48.0", - "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": "circl~1.3.8", - "urls": [ - "https://proxy.golang.org/github.com/cloudflare/circl/@v/v1.3.8.zip" - ], - "integrity": "sha256-gCOgRORw9SLiykG62YsYrW0TTWiBABsRIK0ukWbNpuY=", - "strip_prefix": "github.com/cloudflare/circl@v1.3.8", - "remote_patches": { - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0001-build-add-bzlmod-files.patch": "sha256-MO5AHOV6dJsdslgJ3SYasKiVnVC4PVGNCfGtPdazgKk=", - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0002-build-add-Gazelle-generated-files.patch": "sha256-o4gjeE6meEtVzi0onlwsBKLe0Tha10G4hENADvZspa0=", - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0003-build-expose-floating-point-C-header-target.patch": "sha256-gwHUf/nd0GuMgo4HFuwRNldZVbzLcdkwjyKQMMmma7k=", - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0004-build-add-floating-point-header-to-C-dependencies.patch": "sha256-uIQrsmNNgIcgl61U0kkpFFsTIZYgBPc5kSRL6iRQaBw=", - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0005-build-remove-incorrectly-generated-assembly-targets.patch": "sha256-li6o4xIsOZgOKlaZN8vbXJSF3cT/J488ZuzRKKcQhu4=", - "https://bcr.bazel.build/modules/circl/1.3.8/patches/0006-test-add-pure-on-tests.patch": "sha256-g0vwyaL2CpH1YEBsKQlEaUpBlbQddrCGJIKvw6///No=" - }, - "remote_patch_strip": 1 - } - } - }, - "bazel_tools@_": { - "name": "bazel_tools", - "version": "", - "key": "bazel_tools@_", - "repoName": "bazel_tools", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@local_config_cc_toolchains//:all", - "@local_config_sh//:local_sh_toolchain" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", - "extensionName": "cc_configure_extension", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 17, - "column": 29 - }, - "imports": { - "local_config_cc": "local_config_cc", - "local_config_cc_toolchains": "local_config_cc_toolchains" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl", - "extensionName": "xcode_configure_extension", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 21, - "column": 32 - }, - "imports": { - "local_config_xcode": "local_config_xcode" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@rules_java//java:extensions.bzl", - "extensionName": "toolchains", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 24, - "column": 32 - }, - "imports": { - "local_jdk": "local_jdk", - "remote_java_tools": "remote_java_tools", - "remote_java_tools_linux": "remote_java_tools_linux", - "remote_java_tools_windows": "remote_java_tools_windows", - "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", - "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl", - "extensionName": "sh_configure_extension", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 35, - "column": 39 - }, - "imports": { - "local_config_sh": "local_config_sh" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl", - "extensionName": "remote_coverage_tools_extension", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 39, - "column": 48 - }, - "imports": { - "remote_coverage_tools": "remote_coverage_tools" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl", - "extensionName": "remote_android_tools_extensions", - "usingModule": "bazel_tools@_", - "location": { - "file": "@@bazel_tools//:MODULE.bazel", - "line": 42, - "column": 42 - }, - "imports": { - "android_gmaven_r8": "android_gmaven_r8", - "android_tools": "android_tools" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "rules_cc": "rules_cc@0.0.9", - "rules_java": "rules_java@7.1.0", - "rules_license": "rules_license@0.0.7", - "rules_proto": "rules_proto@6.0.0", - "rules_python": "rules_python@0.4.0", - "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", - "local_config_platform": "local_config_platform@_" - } - }, - "local_config_platform@_": { - "name": "local_config_platform", - "version": "", - "key": "local_config_platform@_", - "repoName": "local_config_platform", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "platforms": "platforms@0.0.8", - "bazel_tools": "bazel_tools@_" - } - }, - "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 - } - } - }, - "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.1": { - "name": "download_utils", - "version": "1.0.0-beta.1", - "key": "download_utils@1.0.0-beta.1", - "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.1", - "urls": [ - "https://gitlab.arm.com/bazel/download_utils/-/releases/v1.0.0-beta.1/downloads/src.tar.gz" - ], - "integrity": "sha512-MGz3+3iDOc8wod5Qhc1uiQTM34QS64cVlSR4RSzCFV6yCRkrWZR555IuxHzOsvpths80rYe42C2JdwmXtKSFnw==", - "strip_prefix": "download_utils-v1.0.0-beta.1", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "bazel_features@1.9.1": { - "name": "bazel_features", - "version": "1.9.1", - "key": "bazel_features@1.9.1", - "repoName": "bazel_features", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "@bazel_features//private:extensions.bzl", - "extensionName": "version_extension", - "usingModule": "bazel_features@1.9.1", - "location": { - "file": "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel", - "line": 15, - "column": 24 - }, - "imports": { - "bazel_features_globals": "bazel_features_globals", - "bazel_features_version": "bazel_features_version" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_skylib": "bazel_skylib@1.5.0", - "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_features~1.9.1", - "urls": [ - "https://github.com/bazel-contrib/bazel_features/releases/download/v1.9.1/bazel_features-v1.9.1.tar.gz" - ], - "integrity": "sha256-13h9oomn+0lzUiEa0gDsn2mIIqngdXpJdv2fcT/zcrM=", - "strip_prefix": "bazel_features-1.9.1", - "remote_patches": { - "https://bcr.bazel.build/modules/bazel_features/1.9.1/patches/module_dot_bazel_version.patch": "sha256-a2ofwS5r2Qq+WxzVa7sLbRXhfT3JoYxSlUVQH/nL454=" - }, - "remote_patch_strip": 1 - } - } - }, - "rules_proto@6.0.0": { - "name": "rules_proto", - "version": "6.0.0", - "key": "rules_proto@6.0.0", - "repoName": "rules_proto", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "rules_license": "rules_license@0.0.7", - "bazel_skylib": "bazel_skylib@1.5.0", - "bazel_features": "bazel_features@1.9.1", - "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_proto~6.0.0", - "urls": [ - "https://github.com/bazelbuild/rules_proto/releases/download/6.0.0/rules_proto-6.0.0.tar.gz" - ], - "integrity": "sha256-MD6G5yKlIPbzJqULQc/Ba5j+bRlVzkZkKlt6Z8EcD10=", - "strip_prefix": "rules_proto-6.0.0", - "remote_patches": { - "https://bcr.bazel.build/modules/rules_proto/6.0.0/patches/module_dot_bazel_version.patch": "sha256-fjQjxMdkMeumhvx9JdFSYeHH+Ex4TaTXNFMi554NF8E=" - }, - "remote_patch_strip": 1 - } - } - }, - "protobuf@3.19.6": { - "name": "protobuf", - "version": "3.19.6", - "key": "protobuf@3.19.6", - "repoName": "protobuf", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "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", - "rules_proto": "rules_proto@6.0.0", - "rules_java": "rules_java@7.1.0", - "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": "protobuf~3.19.6", - "urls": [ - "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.19.6.zip" - ], - "integrity": "sha256-OH4sVZuyx8G8N5jE5s/wFTgaebJ1hpavy/johzC0c4k=", - "strip_prefix": "protobuf-3.19.6", - "remote_patches": { - "https://bcr.bazel.build/modules/protobuf/3.19.6/patches/relative_repo_names.patch": "sha256-w/5gw/zGv8NFId+669hcdw1Uus2lxgYpulATHIwIByI=", - "https://bcr.bazel.build/modules/protobuf/3.19.6/patches/remove_dependency_on_rules_jvm_external.patch": "sha256-THUTnVgEBmjA0W7fKzIyZOVG58DnW9HQTkr4D2zKUUc=", - "https://bcr.bazel.build/modules/protobuf/3.19.6/patches/add_module_dot_bazel_for_examples.patch": "sha256-s/b1gi3baK3LsXefI2rQilhmkb2R5jVJdnT6zEcdfHY=", - "https://bcr.bazel.build/modules/protobuf/3.19.6/patches/module_dot_bazel.patch": "sha256-S0DEni8zgx7rHscW3z/rCEubQnYec0XhNet640cw0h4=" - }, - "remote_patch_strip": 1 - } - } - }, - "ape@1.0.0-alpha.3": { - "name": "ape", - "version": "1.0.0-alpha.3", - "key": "ape@1.0.0-alpha.3", - "repoName": "ape", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [ - { - "extensionBzlFile": "//:MODULE.bazel", - "extensionName": "_repo_rules", - "usingModule": "ape@1.0.0-alpha.3", - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 0, - "column": 0 - }, - "imports": { - "ape-arm64.elf": "ape-arm64.elf", - "ape-x86_64.elf": "ape-x86_64.elf", - "ape-x86_64.macho": "ape-x86_64.macho", - "ape.pe": "ape.pe", - "launcher": "launcher", - "cosmos-awk": "cosmos-awk", - "awk": "awk", - "cosmos-b2sum": "cosmos-b2sum", - "b2sum": "b2sum", - "cosmos-base32": "cosmos-base32", - "base32": "base32", - "cosmos-base64": "cosmos-base64", - "base64": "base64", - "cosmos-basename": "cosmos-basename", - "basename": "basename", - "cosmos-basenc": "cosmos-basenc", - "basenc": "basenc", - "cosmos-bash": "cosmos-bash", - "bash": "bash", - "cosmos-berry": "cosmos-berry", - "berry": "berry", - "cosmos-brotli": "cosmos-brotli", - "brotli": "brotli", - "cosmos-bzip2": "cosmos-bzip2", - "bzip2": "bzip2", - "cosmos-cat": "cosmos-cat", - "cat": "cat", - "cosmos-chcon": "cosmos-chcon", - "chcon": "chcon", - "cosmos-chgrp": "cosmos-chgrp", - "chgrp": "chgrp", - "cosmos-chown": "cosmos-chown", - "chown": "chown", - "cosmos-chroot": "cosmos-chroot", - "chroot": "chroot", - "cosmos-cksum": "cosmos-cksum", - "cksum": "cksum", - "cosmos-clang-format": "cosmos-clang-format", - "clang-format": "clang-format", - "cosmos-comm": "cosmos-comm", - "comm": "comm", - "cosmos-cpuid": "cosmos-cpuid", - "cpuid": "cpuid", - "cosmos-csplit": "cosmos-csplit", - "csplit": "csplit", - "cosmos-ctags": "cosmos-ctags", - "ctags": "ctags", - "cosmos-curl": "cosmos-curl", - "curl": "curl", - "cosmos-cut": "cosmos-cut", - "cut": "cut", - "cosmos-dash": "cosmos-dash", - "dash": "dash", - "cosmos-datasette": "cosmos-datasette", - "datasette": "datasette", - "cosmos-date": "cosmos-date", - "date": "date", - "cosmos-df": "cosmos-df", - "df": "df", - "cosmos-dir": "cosmos-dir", - "dir": "dir", - "cosmos-dircolors": "cosmos-dircolors", - "dircolors": "dircolors", - "cosmos-dirname": "cosmos-dirname", - "dirname": "dirname", - "cosmos-du": "cosmos-du", - "du": "du", - "cosmos-emacs": "cosmos-emacs", - "emacs": "emacs", - "cosmos-emacsclient": "cosmos-emacsclient", - "emacsclient": "emacsclient", - "cosmos-env": "cosmos-env", - "env": "env", - "cosmos-expand": "cosmos-expand", - "expand": "expand", - "cosmos-expr": "cosmos-expr", - "expr": "expr", - "cosmos-factor": "cosmos-factor", - "factor": "factor", - "cosmos-false": "cosmos-false", - "false": "false", - "cosmos-find": "cosmos-find", - "find": "find", - "cosmos-fmt": "cosmos-fmt", - "fmt": "fmt", - "cosmos-fold": "cosmos-fold", - "fold": "fold", - "cosmos-gmake": "cosmos-gmake", - "gmake": "gmake", - "cosmos-greenbean": "cosmos-greenbean", - "greenbean": "greenbean", - "cosmos-grep": "cosmos-grep", - "grep": "grep", - "cosmos-groups": "cosmos-groups", - "groups": "groups", - "cosmos-head": "cosmos-head", - "head": "head", - "cosmos-id": "cosmos-id", - "id": "id", - "cosmos-install": "cosmos-install", - "install": "install", - "cosmos-join": "cosmos-join", - "join": "join", - "cosmos-kill": "cosmos-kill", - "kill": "kill", - "cosmos-less": "cosmos-less", - "less": "less", - "cosmos-life": "cosmos-life", - "life": "life", - "cosmos-link": "cosmos-link", - "link": "link", - "cosmos-links": "cosmos-links", - "links": "links", - "cosmos-ln": "cosmos-ln", - "ln": "ln", - "cosmos-locate": "cosmos-locate", - "locate": "locate", - "cosmos-logname": "cosmos-logname", - "logname": "logname", - "cosmos-ls": "cosmos-ls", - "ls": "ls", - "cosmos-lua": "cosmos-lua", - "lua": "lua", - "cosmos-lz4": "cosmos-lz4", - "lz4": "lz4", - "cosmos-make": "cosmos-make", - "make": "make", - "cosmos-md5sum": "cosmos-md5sum", - "md5sum": "md5sum", - "cosmos-mkfifo": "cosmos-mkfifo", - "mkfifo": "mkfifo", - "cosmos-mknod": "cosmos-mknod", - "mknod": "mknod", - "cosmos-mktemp": "cosmos-mktemp", - "mktemp": "mktemp", - "cosmos-mktemper": "cosmos-mktemper", - "mktemper": "mktemper", - "cosmos-nano": "cosmos-nano", - "nano": "nano", - "cosmos-nesemu1": "cosmos-nesemu1", - "nesemu1": "nesemu1", - "cosmos-nice": "cosmos-nice", - "nice": "nice", - "cosmos-ninja": "cosmos-ninja", - "ninja": "ninja", - "cosmos-nl": "cosmos-nl", - "nl": "nl", - "cosmos-nohup": "cosmos-nohup", - "nohup": "nohup", - "cosmos-nproc": "cosmos-nproc", - "nproc": "nproc", - "cosmos-numfmt": "cosmos-numfmt", - "numfmt": "numfmt", - "cosmos-od": "cosmos-od", - "od": "od", - "cosmos-paste": "cosmos-paste", - "paste": "paste", - "cosmos-pathchk": "cosmos-pathchk", - "pathchk": "pathchk", - "cosmos-pigz": "cosmos-pigz", - "pigz": "pigz", - "cosmos-pinky": "cosmos-pinky", - "pinky": "pinky", - "cosmos-pledge": "cosmos-pledge", - "pledge": "pledge", - "cosmos-pr": "cosmos-pr", - "pr": "pr", - "cosmos-printenv": "cosmos-printenv", - "printenv": "printenv", - "cosmos-printimage": "cosmos-printimage", - "printimage": "printimage", - "cosmos-ptx": "cosmos-ptx", - "ptx": "ptx", - "cosmos-pwd": "cosmos-pwd", - "pwd": "pwd", - "cosmos-pypack1": "cosmos-pypack1", - "pypack1": "pypack1", - "cosmos-python": "cosmos-python", - "python": "python", - "cosmos-qjs": "cosmos-qjs", - "qjs": "qjs", - "cosmos-readlink": "cosmos-readlink", - "readlink": "readlink", - "cosmos-realpath": "cosmos-realpath", - "realpath": "realpath", - "cosmos-redbean": "cosmos-redbean", - "redbean": "redbean", - "cosmos-rmdir": "cosmos-rmdir", - "rmdir": "rmdir", - "cosmos-rsync": "cosmos-rsync", - "rsync": "rsync", - "cosmos-runcon": "cosmos-runcon", - "runcon": "runcon", - "cosmos-script": "cosmos-script", - "script": "script", - "cosmos-sed": "cosmos-sed", - "sed": "sed", - "cosmos-seq": "cosmos-seq", - "seq": "seq", - "cosmos-sha1sum": "cosmos-sha1sum", - "sha1sum": "sha1sum", - "cosmos-sha224sum": "cosmos-sha224sum", - "sha224sum": "sha224sum", - "cosmos-sha256sum": "cosmos-sha256sum", - "sha256sum": "sha256sum", - "cosmos-sha384sum": "cosmos-sha384sum", - "sha384sum": "sha384sum", - "cosmos-sha512sum": "cosmos-sha512sum", - "sha512sum": "sha512sum", - "cosmos-shred": "cosmos-shred", - "shred": "shred", - "cosmos-shuf": "cosmos-shuf", - "shuf": "shuf", - "cosmos-sleep": "cosmos-sleep", - "sleep": "sleep", - "cosmos-sort": "cosmos-sort", - "sort": "sort", - "cosmos-split": "cosmos-split", - "split": "split", - "cosmos-sqlite3": "cosmos-sqlite3", - "sqlite3": "sqlite3", - "cosmos-stat": "cosmos-stat", - "stat": "stat", - "cosmos-stty": "cosmos-stty", - "stty": "stty", - "cosmos-sum": "cosmos-sum", - "sum": "sum", - "cosmos-sync": "cosmos-sync", - "sync": "sync", - "cosmos-tac": "cosmos-tac", - "tac": "tac", - "cosmos-tail": "cosmos-tail", - "tail": "tail", - "cosmos-tar": "cosmos-tar", - "tar": "tar", - "cosmos-tee": "cosmos-tee", - "tee": "tee", - "cosmos-test": "cosmos-test", - "test": "test", - "cosmos-tidy": "cosmos-tidy", - "tidy": "tidy", - "cosmos-timeout": "cosmos-timeout", - "timeout": "timeout", - "cosmos-tmux": "cosmos-tmux", - "tmux": "tmux", - "cosmos-touch": "cosmos-touch", - "touch": "touch", - "cosmos-tr": "cosmos-tr", - "tr": "tr", - "cosmos-tree": "cosmos-tree", - "tree": "tree", - "cosmos-true": "cosmos-true", - "true": "true", - "cosmos-truncate": "cosmos-truncate", - "truncate": "truncate", - "cosmos-tsort": "cosmos-tsort", - "tsort": "tsort", - "cosmos-tty": "cosmos-tty", - "tty": "tty", - "cosmos-ttyinfo": "cosmos-ttyinfo", - "ttyinfo": "ttyinfo", - "cosmos-unbourne": "cosmos-unbourne", - "unbourne": "unbourne", - "cosmos-unexpand": "cosmos-unexpand", - "unexpand": "unexpand", - "cosmos-uniq": "cosmos-uniq", - "uniq": "uniq", - "cosmos-unlink": "cosmos-unlink", - "unlink": "unlink", - "cosmos-unzip": "cosmos-unzip", - "unzip": "unzip", - "cosmos-uptime": "cosmos-uptime", - "uptime": "uptime", - "cosmos-users": "cosmos-users", - "users": "users", - "cosmos-vdir": "cosmos-vdir", - "vdir": "vdir", - "cosmos-verynice": "cosmos-verynice", - "verynice": "verynice", - "cosmos-vim": "cosmos-vim", - "vim": "vim", - "cosmos-wall": "cosmos-wall", - "wall": "wall", - "cosmos-wc": "cosmos-wc", - "wc": "wc", - "cosmos-wget": "cosmos-wget", - "wget": "wget", - "cosmos-who": "cosmos-who", - "who": "who", - "cosmos-whoami": "cosmos-whoami", - "whoami": "whoami", - "cosmos-xargs": "cosmos-xargs", - "xargs": "xargs", - "cosmos-xz": "cosmos-xz", - "xz": "xz", - "cosmos-yes": "cosmos-yes", - "yes": "yes", - "cosmos-zip": "cosmos-zip", - "zip": "zip", - "cosmos-zsh": "cosmos-zsh", - "zsh": "zsh", - "cosmos-zstd": "cosmos-zstd", - "zstd": "zstd", - "cli": "cli", - "diff": "diff", - "diff3": "diff3", - "sdiff": "sdiff", - "cmp": "cmp", - "patch": "patch" - }, - "devImports": [], - "tags": [ - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-h3zL1GUkMGVCbLSjyrQ1GsrZGGSfhlZVa7YEiC7q0I8=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-arm64.elf" - ], - "name": "ape-arm64.elf" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, - "column": 18 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-fBz4sk4bbdatfaOBcEXVgq2hRrTW7AxqRb6oMOOmX00=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.elf" - ], - "name": "ape-x86_64.elf" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, - "column": 18 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-btvd3YJTsgZojeJJGIrf2OuFDpw9nxmEMleBS5NsWZg=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.macho" - ], - "name": "ape-x86_64.macho" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 18, - "column": 18 - } - }, - { - "tagName": "//ape/pe:repository.bzl%pe", - "attributeValues": { - "name": "ape.pe" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 34, - "column": 3 - } - }, - { - "tagName": "@toolchain_utils//toolchain/local/select:defs.bzl%toolchain_local_select", - "attributeValues": { - "map": { - "arm64-linux": "@ape-arm64.elf", - "amd64-linux": "@ape-x86_64.elf", - "amd64-darwin": "@ape-x86_64.macho", - "windows": "@ape.pe" - }, - "name": "launcher" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 38, - "column": 7 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-f+uWrpvZmKp0icmVlTusCWs4TvqR2FrmOkQ1E7JEo/Q=", - "output": "awk", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/awk" - ], - "name": "cosmos-awk" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-awk//:awk", - "name": "awk" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-C0A+VvLQwqWyZ43zLhgi3tX5X8mCSGUT4kBoTsCtsOA=", - "output": "b2sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/b2sum" - ], - "name": "cosmos-b2sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-b2sum//:b2sum", - "name": "b2sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-UKvhDPWxj5CBiJcC8v22sLAkAMRbeyr0HgsQT3aRpJo=", - "output": "base32", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base32" - ], - "name": "cosmos-base32" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-base32//:base32", - "name": "base32" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Ma0Uq9TjmARCgwZWzTBcuEFyIkMXUahQqms9sUQPYjE=", - "output": "base64", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base64" - ], - "name": "cosmos-base64" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-base64//:base64", - "name": "base64" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-wVt/L/UlzFofy0HnJzUxwSipYmqvpnWSYNffI6kHSOg=", - "output": "basename", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basename" - ], - "name": "cosmos-basename" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-basename//:basename", - "name": "basename" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ss0EQU9BQPJDOhFS2kyr39G9ql6cme2hKhJ5LXu41No=", - "output": "basenc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basenc" - ], - "name": "cosmos-basenc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-basenc//:basenc", - "name": "basenc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-817s6bXbU96XAE/lpw/bVjtaG/HZNkiM2orJBhKWaXY=", - "output": "bash", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bash" - ], - "name": "cosmos-bash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-bash//:bash", - "name": "bash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-iRihZOPxJy8riq00G9QqyuDphQGZW87arvQa7wu5WJ0=", - "output": "berry", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/berry" - ], - "name": "cosmos-berry" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-berry//:berry", - "name": "berry" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-5dbhyGt64HdqXrSmTVdOlpyVgW3A3FTcRy9JNKlETbE=", - "output": "brotli", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/brotli" - ], - "name": "cosmos-brotli" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-brotli//:brotli", - "name": "brotli" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-i0jxsBCz1axEaa9Kd1TFPTFwAVYFhbR6dGqUl/OfwYQ=", - "output": "bzip2", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bzip2" - ], - "name": "cosmos-bzip2" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-bzip2//:bzip2", - "name": "bzip2" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-hxd0pfBMmXT44ii103FiMUI3pQYHj7UmNW4pqnw12HY=", - "output": "cat", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cat" - ], - "name": "cosmos-cat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-cat//:cat", - "name": "cat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-NKrTh2us8Pc67LI7udJg9JhlhobHU03laNr4U+5DhF8=", - "output": "chcon", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chcon" - ], - "name": "cosmos-chcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-chcon//:chcon", - "name": "chcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-7KvHpFFsvhK981vIlGyegWuQhIzxY87lYcYfNB/qdC8=", - "output": "chgrp", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chgrp" - ], - "name": "cosmos-chgrp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-chgrp//:chgrp", - "name": "chgrp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-XlKnJcZ1t7cdBKC2twaXC8/X6p7bSpnFoIDQ0xxdrhQ=", - "output": "chown", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chown" - ], - "name": "cosmos-chown" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-chown//:chown", - "name": "chown" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-lN46T08G7T85BC9L/q4k9vlLwNKWbyD0YkAclHWUGuw=", - "output": "chroot", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chroot" - ], - "name": "cosmos-chroot" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-chroot//:chroot", - "name": "chroot" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ZN7kzOdpdzCUsa+1+2dsZ19980fhL5x7tnYdKRqW7OY=", - "output": "cksum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cksum" - ], - "name": "cosmos-cksum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-cksum//:cksum", - "name": "cksum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", - "output": "clang-format", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/clang-format" - ], - "name": "cosmos-clang-format" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-clang-format//:clang-format", - "name": "clang-format" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Z4pMcRlfC6n9KC5Z8cSZT5NA+e/0Zl30tW4zRB+Ml7I=", - "output": "comm", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/comm" - ], - "name": "cosmos-comm" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-comm//:comm", - "name": "comm" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-KZ7I9Vj0m0SYjYdlFCDsWAeZZHq5CL2V2/DiBJgVPFE=", - "output": "cpuid", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cpuid" - ], - "name": "cosmos-cpuid" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-cpuid//:cpuid", - "name": "cpuid" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-PnfIPYD2n2cZ8rxV26jvFiE6e+XROXGwhE6sbpjbPSY=", - "output": "csplit", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/csplit" - ], - "name": "cosmos-csplit" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-csplit//:csplit", - "name": "csplit" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-6GwrTt16hCzJ8EoVXQXoetwnOIOhBR4T4gX2PO/wIfQ=", - "output": "ctags", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ctags" - ], - "name": "cosmos-ctags" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ctags//:ctags", - "name": "ctags" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-jc8LNKBMlWgGeHW3Tum9M6AfV2a5PlLmJunmfs00q/M=", - "output": "curl", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/curl" - ], - "name": "cosmos-curl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-curl//:curl", - "name": "curl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-N6iYRU/Ue0YN1tW0YElHjCVe0aPrUtbSxWFaJUPXGAE=", - "output": "cut", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cut" - ], - "name": "cosmos-cut" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-cut//:cut", - "name": "cut" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-DQjaobzAoYxtxBvvDdyQLbTvjPV61HLMOahNEXz8dOM=", - "output": "dash", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dash" - ], - "name": "cosmos-dash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-dash//:dash", - "name": "dash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ohY3OEDwK6DOSWfLFlUa/4MTTHd9kKGN8NYTwGyWOZA=", - "output": "datasette", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/datasette" - ], - "name": "cosmos-datasette" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-datasette//:datasette", - "name": "datasette" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-4r91y6qrOb4PK5AQ23uY2lskgprTRGLwDTBOkMPF1/c=", - "output": "date", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/date" - ], - "name": "cosmos-date" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-date//:date", - "name": "date" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-rrkKRiH346Qfr/uwtOFe5x+Q3X1yajhCndbTxnkkiSI=", - "output": "df", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/df" - ], - "name": "cosmos-df" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-df//:df", - "name": "df" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-XfB99aziyrFfAHbOzI36cXPn+633uND4y02Mn9wTx98=", - "output": "dir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dir" - ], - "name": "cosmos-dir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-dir//:dir", - "name": "dir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-FTu1gC+xUzR1NTxaXk9ZLu4Gp2ACwnQC2FvHJySd1/Q=", - "output": "dircolors", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dircolors" - ], - "name": "cosmos-dircolors" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-dircolors//:dircolors", - "name": "dircolors" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-F9LmexRfLOqVyybPSXv+2xBhLakd8fnV01T/yZK78EU=", - "output": "dirname", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dirname" - ], - "name": "cosmos-dirname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-dirname//:dirname", - "name": "dirname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-cwPg/fIABRhBnlWOXTpC7GaIEi/L2vgMqPUAZ8vnxLA=", - "output": "du", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/du" - ], - "name": "cosmos-du" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-du//:du", - "name": "du" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-FHVaf2drHxbWKWpCc0pBlt8NNLiR6x6pX9KrhCkI5zM=", - "output": "emacs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacs" - ], - "name": "cosmos-emacs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-emacs//:emacs", - "name": "emacs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-2p9WFK4fF0vnJDUyNTd6a4jigqsQpp0aG41e0MQSJOM=", - "output": "emacsclient", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacsclient" - ], - "name": "cosmos-emacsclient" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-emacsclient//:emacsclient", - "name": "emacsclient" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-KSmB7dXht0FmmkJB8JQnUw6uQIfG36SugQXyMdPKPso=", - "output": "env", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/env" - ], - "name": "cosmos-env" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-env//:env", - "name": "env" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-GDxdiCM3bnYQtE+brm6GgDN7EyjV+5vxYj1McQ/YGLQ=", - "output": "expand", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expand" - ], - "name": "cosmos-expand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-expand//:expand", - "name": "expand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-GD2DSrlrlym+z+57/BUKL50paNN1QU6FGe1D3wxtnnk=", - "output": "expr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expr" - ], - "name": "cosmos-expr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-expr//:expr", - "name": "expr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Pmziyh/iAkeaU/XHmAblS/4QfA6YDbml6qSX/yqVj6s=", - "output": "factor", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/factor" - ], - "name": "cosmos-factor" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-factor//:factor", - "name": "factor" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-FuIagCcD2snlx2D2D2k5+qhA2KXgWcoxMDY7O1qlE74=", - "output": "false", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/false" - ], - "name": "cosmos-false" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-false//:false", - "name": "false" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-k3BJOldX6NzX1Aq/RX6Q6PQts/3l9IFR7BILMIDUkg8=", - "output": "find", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/find" - ], - "name": "cosmos-find" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-find//:find", - "name": "find" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ZjBJtahjGrr6Xll85ZZo+lTGEZNdaSksUNqpkpMqyrY=", - "output": "fmt", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fmt" - ], - "name": "cosmos-fmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-fmt//:fmt", - "name": "fmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-u5I83GpxaXBKFtzsJVJEWdQ1hJkpRmJGbQVHzjOYJ3w=", - "output": "fold", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fold" - ], - "name": "cosmos-fold" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-fold//:fold", - "name": "fold" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-o5a22Uli7i9upNh3z9qwPRFv3vIF7hOSdYMCXz8ioQc=", - "output": "gmake", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/gmake" - ], - "name": "cosmos-gmake" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-gmake//:gmake", - "name": "gmake" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-2e6ANHtNrFdAKdmSAVBOYWacqaF9SxOhrwKesYwIfSc=", - "output": "greenbean", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/greenbean" - ], - "name": "cosmos-greenbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-greenbean//:greenbean", - "name": "greenbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-btb7IC+1GiiU+CTMX4F7F8ESESShnVx90+Vz8uhgkkA=", - "output": "grep", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/grep" - ], - "name": "cosmos-grep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-grep//:grep", - "name": "grep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-1hRskXbgQrpy3YedFo9SmYix5KUTJAV9cL6I0T/DF7c=", - "output": "groups", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/groups" - ], - "name": "cosmos-groups" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-groups//:groups", - "name": "groups" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-I4EetDV9GYYKHCNANar3iwNNZMJhJ9+KaQBkWyA0r7o=", - "output": "head", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/head" - ], - "name": "cosmos-head" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-head//:head", - "name": "head" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-JtW0OHrUUwEaHsb03yfoawekOVad+XZ2sl8ZnM0+rYc=", - "output": "id", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/id" - ], - "name": "cosmos-id" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-id//:id", - "name": "id" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-FT0vE0RtmwB2+ArCfbm59mou/sLQzymNvTqogiVpRTg=", - "output": "install", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/install" - ], - "name": "cosmos-install" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-install//:install", - "name": "install" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-KVBK8dBkDM+LijUS4hi7zNsa18hZvJqNS6uWQMvxgWs=", - "output": "join", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/join" - ], - "name": "cosmos-join" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-join//:join", - "name": "join" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-+4mYRIwPgtQ7BEoK7/E6vXx5iriV3vpk0eNrNI2kNh8=", - "output": "kill", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/kill" - ], - "name": "cosmos-kill" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-kill//:kill", - "name": "kill" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ku05PfJLk7zICV/ljbzXavHBvnMlitaLcd3uJvfZcfU=", - "output": "less", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/less" - ], - "name": "cosmos-less" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-less//:less", - "name": "less" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-8XQ3CXLLxo7ykT/+jGJovYCAzSEih6H4wnQ26+Q04lM=", - "output": "life", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/life" - ], - "name": "cosmos-life" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-life//:life", - "name": "life" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-MRqILGFYuhtO470TDsIxfQe7NE1GrHjbWCnU2nb31QQ=", - "output": "link", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/link" - ], - "name": "cosmos-link" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-link//:link", - "name": "link" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Px+ZWWbcFLnnjuORljLehyqLBW3UIuGtEqQf3vnJXgo=", - "output": "links", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/links" - ], - "name": "cosmos-links" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-links//:links", - "name": "links" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-QevM7NFKo4T79iCOOu6JjAxVuoQHAiSi3zkYf3HQoHI=", - "output": "ln", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ln" - ], - "name": "cosmos-ln" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ln//:ln", - "name": "ln" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-zsyqygY6K+gwbw9Cw7j+JEjd1W4T66xKil7PqeFtfA8=", - "output": "locate", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/locate" - ], - "name": "cosmos-locate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-locate//:locate", - "name": "locate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-if+qby9Pyn2PT53NEIoPXW/xusX5N8TK6lFNhOYEk7A=", - "output": "logname", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/logname" - ], - "name": "cosmos-logname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-logname//:logname", - "name": "logname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-09ABdeL9W/aloHvspUOTk4s1qXPKelusGWs/fI5elBY=", - "output": "ls", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ls" - ], - "name": "cosmos-ls" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ls//:ls", - "name": "ls" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-xuf+7nkxzN/uNIJ8j7adEqf6dvm3X+QT4LeDtRBeoBM=", - "output": "lua", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lua" - ], - "name": "cosmos-lua" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-lua//:lua", - "name": "lua" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-hS8xfK0iRyQ51wndmPpRqC2iJfJzvk4OSPtdBNoDzIg=", - "output": "lz4", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lz4" - ], - "name": "cosmos-lz4" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-lz4//:lz4", - "name": "lz4" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-oxtmxi2jmEKg2EX4gzBsmikSI3H56Cb4TL5JDLrHmes=", - "output": "make", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/make" - ], - "name": "cosmos-make" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-make//:make", - "name": "make" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-V02adwdclgCCznwYMv8TzulmGsJCj0nY6BbLm9+3BmI=", - "output": "md5sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/md5sum" - ], - "name": "cosmos-md5sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-md5sum//:md5sum", - "name": "md5sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Qn7ki2D6CeAj35bXjjdtn8uoTIWvQzrJQgQW5YwVjNE=", - "output": "mkfifo", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mkfifo" - ], - "name": "cosmos-mkfifo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-mkfifo//:mkfifo", - "name": "mkfifo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-WuoCTQkW92gL+rkPEsIVekSW3T5jWpLe4d0tkEEVlto=", - "output": "mknod", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mknod" - ], - "name": "cosmos-mknod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-mknod//:mknod", - "name": "mknod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-e4OIGcZD2+IeoysBxEx3+PzbkFxduS3t17Xh6APVTg0=", - "output": "mktemp", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemp" - ], - "name": "cosmos-mktemp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-mktemp//:mktemp", - "name": "mktemp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ukMdMND+GwcBR+OdH6KDdHTYSOc1pKWAbYomyj9ZoOo=", - "output": "mktemper", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemper" - ], - "name": "cosmos-mktemper" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-mktemper//:mktemper", - "name": "mktemper" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-E8aX3D/XXItFzwVS7UO3tCD2I4gCx9K7oqFjkWC+hEA=", - "output": "nano", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nano" - ], - "name": "cosmos-nano" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nano//:nano", - "name": "nano" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-3tEEU6VMPK8bwloRQ2CkLXD8+icXne+EBdHUtfYPsmw=", - "output": "nesemu1", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nesemu1" - ], - "name": "cosmos-nesemu1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nesemu1//:nesemu1", - "name": "nesemu1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ukGk1uudFSnluQXKEtGsAIzL6JhXe4NaLC53QdcyK+E=", - "output": "nice", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nice" - ], - "name": "cosmos-nice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nice//:nice", - "name": "nice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-6vNW/WRG9QrsaksgbhhdEPyb9VgzATt2AEJj6jlyfmo=", - "output": "ninja", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ninja" - ], - "name": "cosmos-ninja" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ninja//:ninja", - "name": "ninja" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-per3cJdCvbTUMe1rs76QJ/E9eQYfUl4VVPafj0yJFHk=", - "output": "nl", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nl" - ], - "name": "cosmos-nl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nl//:nl", - "name": "nl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-4eCoAypbSFOk/Bgq8jfyv2BPPP78iNLXb711CK8buGU=", - "output": "nohup", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nohup" - ], - "name": "cosmos-nohup" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nohup//:nohup", - "name": "nohup" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-uKzADOYvOwHwG9Wc7v0EHPJdidt7Vx1CY0ur9QL0ziM=", - "output": "nproc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nproc" - ], - "name": "cosmos-nproc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-nproc//:nproc", - "name": "nproc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-CT5axyDY1ASWxzGJb+hDVTRiWqU2f8+CSzhehOdR/wY=", - "output": "numfmt", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/numfmt" - ], - "name": "cosmos-numfmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-numfmt//:numfmt", - "name": "numfmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Hy0uDDsgdci74s+jI+R2Bkgj4LVaW0djddoqkzTebSE=", - "output": "od", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/od" - ], - "name": "cosmos-od" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-od//:od", - "name": "od" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Sa5G8cxyh5Vsr6kkf/wmwnos0KYwIUHNI1/dZ16n24U=", - "output": "paste", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/paste" - ], - "name": "cosmos-paste" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-paste//:paste", - "name": "paste" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ZjR+IGm8fv0b/hy4hmdi1xuxpoA5A7MR0AnGndlfTvc=", - "output": "pathchk", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pathchk" - ], - "name": "cosmos-pathchk" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pathchk//:pathchk", - "name": "pathchk" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", - "output": "pigz", - "urls": [ - "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-alpha.3/MODULE.bazel", - "line": 54, - "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-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ObmAOis790fvuP+YpdxP9cyR5ISU6BB4G/8un3xR4ns=", - "output": "pinky", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pinky" - ], - "name": "cosmos-pinky" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pinky//:pinky", - "name": "pinky" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-rcK6umgSKLv06PIV+glVDhKgPr79vfIodUEsZ7WyGaM=", - "output": "pledge", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pledge" - ], - "name": "cosmos-pledge" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pledge//:pledge", - "name": "pledge" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-FVC8+/eRiBZ2MHpZNZRHrRMoDFLi4S9NRMVPQSWimOo=", - "output": "pr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pr" - ], - "name": "cosmos-pr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pr//:pr", - "name": "pr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-zoWUC3FJVC6a8iM2vmiEVNa4mjhmLo76aPkh2TXB+bc=", - "output": "printenv", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printenv" - ], - "name": "cosmos-printenv" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-printenv//:printenv", - "name": "printenv" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-myO0x/BQSNFuWWwDop0ph/WmO8tBsnxuTIoIzC6Xsaw=", - "output": "printimage", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printimage" - ], - "name": "cosmos-printimage" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-printimage//:printimage", - "name": "printimage" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-x6abLQHeAmLQN213aU0nx+4xfZSfWqlYWP7Fe+wueEs=", - "output": "ptx", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ptx" - ], - "name": "cosmos-ptx" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ptx//:ptx", - "name": "ptx" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-RdIwQz9MZ5PaDIT9y0AY3YZHKYA/tUm8ylYf5RD0S8U=", - "output": "pwd", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pwd" - ], - "name": "cosmos-pwd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pwd//:pwd", - "name": "pwd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-mb3fmOwEqmunaoKZahHdRh2K8OuOSHFQQIc8Yddppic=", - "output": "pypack1", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pypack1" - ], - "name": "cosmos-pypack1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-pypack1//:pypack1", - "name": "pypack1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-RvuLtLNsExsN10Mipa/ewh1Qr95a0dpOOJ+j3BBht2g=", - "output": "python", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/python" - ], - "name": "cosmos-python" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-python//:python", - "name": "python" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-RmszlYwDkeSbX3xZ/0m/yQCgfbJNCflaQ0KHuz1lo/w=", - "output": "qjs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/qjs" - ], - "name": "cosmos-qjs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-qjs//:qjs", - "name": "qjs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-3/0q9jntaXuBK5+3+FFiUHfnZhVsJILGRyw9C9jsDrM=", - "output": "readlink", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/readlink" - ], - "name": "cosmos-readlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-readlink//:readlink", - "name": "readlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-+Wo9k1u/CGPqtTKgHDjdu6z7UraE444Ez82h69SIKm0=", - "output": "realpath", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/realpath" - ], - "name": "cosmos-realpath" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-realpath//:realpath", - "name": "realpath" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-+zB9iVZklOfgaynLhwQG1qTP+/xUZE2A2UyTTIz9iCk=", - "output": "redbean", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/redbean" - ], - "name": "cosmos-redbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-redbean//:redbean", - "name": "redbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-olbEjveooS5XCXiLtsvXacsfR1l7AFndDB7XRLr3HwU=", - "output": "rmdir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rmdir" - ], - "name": "cosmos-rmdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-rmdir//:rmdir", - "name": "rmdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-bAJZ6fMDcOpiZ9eNiC/KySEoanb8ZnXL+LBgpOuc8s4=", - "output": "rsync", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rsync" - ], - "name": "cosmos-rsync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-rsync//:rsync", - "name": "rsync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-m+7V7IWXjMBts1GcBvTn9yLZrekeJ2PnTIZPDPqbHyg=", - "output": "runcon", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/runcon" - ], - "name": "cosmos-runcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-runcon//:runcon", - "name": "runcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-gF6Ux0AVHv3VK3ynVCDfwWSzCzcM6tbYUtAEYkE/Lto=", - "output": "script", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/script" - ], - "name": "cosmos-script" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-script//:script", - "name": "script" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-mLD3mRX7R9we3IQpAZKC7c4mF2Nz7sG8s63Is0TkYcM=", - "output": "sed", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sed" - ], - "name": "cosmos-sed" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sed//:sed", - "name": "sed" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-AkvogLBC9nwhq2rpaA1kL0Q4beb00QMrptcxpzXKjE0=", - "output": "seq", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/seq" - ], - "name": "cosmos-seq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-seq//:seq", - "name": "seq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-wDWmXDgJmeEuJUd5ER9ed1rGZRxJMwEe1uR7Jrm4r2o=", - "output": "sha1sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha1sum" - ], - "name": "cosmos-sha1sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sha1sum//:sha1sum", - "name": "sha1sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-DPOKHJa+e04UNJm0ptGNf79Qpvdf3OCbAlHKLPFq3oM=", - "output": "sha224sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha224sum" - ], - "name": "cosmos-sha224sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sha224sum//:sha224sum", - "name": "sha224sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-BpxhJqv/rboyFhYy31eq5Ym3eriHcGRqOGDdmbWwAuw=", - "output": "sha256sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha256sum" - ], - "name": "cosmos-sha256sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sha256sum//:sha256sum", - "name": "sha256sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Ak4+xM3+eGqXyWVghrgtAo80Fgeo6iXd10+K7tOd5HE=", - "output": "sha384sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha384sum" - ], - "name": "cosmos-sha384sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sha384sum//:sha384sum", - "name": "sha384sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-qq4HW+6hZ26U/TiN50QPdd710RpiPDjhrG/XfILWxE0=", - "output": "sha512sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha512sum" - ], - "name": "cosmos-sha512sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sha512sum//:sha512sum", - "name": "sha512sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-7/edcRznrBT9DOKb05J39nRsjJ30LkH9Pz/5QUlsDH4=", - "output": "shred", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shred" - ], - "name": "cosmos-shred" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-shred//:shred", - "name": "shred" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-X1v5hF6yG2zM78Qg85wcENzihXXmMZnBTZNleRCscL4=", - "output": "shuf", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shuf" - ], - "name": "cosmos-shuf" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-shuf//:shuf", - "name": "shuf" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-esGxinA9WyISgkcQ7sPIuC7B1SwQHMXmGTYHOhZvAx0=", - "output": "sleep", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sleep" - ], - "name": "cosmos-sleep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sleep//:sleep", - "name": "sleep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Ar+SpUClNPT5OItQMiiYH7CBHnSoKHa1jjN32BjqMF4=", - "output": "sort", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sort" - ], - "name": "cosmos-sort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sort//:sort", - "name": "sort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-A5nEGoaZdJ5p1j3s54rgp8/BEoBVakaRE4YAqAMMZbQ=", - "output": "split", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/split" - ], - "name": "cosmos-split" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-split//:split", - "name": "split" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-IICFVnTkqMZ/c5PPtIStX89WtBnsmIg3z1qfFJEOXlE=", - "output": "sqlite3", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sqlite3" - ], - "name": "cosmos-sqlite3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sqlite3//:sqlite3", - "name": "sqlite3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-KO2xc+Vf2HdfUZPh2ItTxfun5CwFNsPQArjJ22fw/a8=", - "output": "stat", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stat" - ], - "name": "cosmos-stat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-stat//:stat", - "name": "stat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-S2BXpqZxSI493gq3piyCqH3dwE+yxvvAL1WWxRVd844=", - "output": "stty", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stty" - ], - "name": "cosmos-stty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-stty//:stty", - "name": "stty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Uoro6aH+YK1IIBditsXeyXhwAlR9vqLnLOQ9K8PRSuM=", - "output": "sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sum" - ], - "name": "cosmos-sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sum//:sum", - "name": "sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-1iFwSaaAXI3pdNdfrMI9PychzSGJhy0UpDCDTwCn8/U=", - "output": "sync", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sync" - ], - "name": "cosmos-sync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-sync//:sync", - "name": "sync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-RG/VXzGH2MSwHLSQIG61wDmoNR5xYch3+xNbtDUROB4=", - "output": "tac", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tac" - ], - "name": "cosmos-tac" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tac//:tac", - "name": "tac" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-hdbjryLVn6c7MR/XX/UhaOS7+QKLYhrJUo+DsE3Xz/E=", - "output": "tail", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tail" - ], - "name": "cosmos-tail" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tail//:tail", - "name": "tail" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-bK1q+UwoTLgbDi6UeY20FCH3MtJaoRpWV3DHd2U7Mbw=", - "output": "tar", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tar" - ], - "name": "cosmos-tar" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tar//:tar", - "name": "tar" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-TJTxJe2mWPIizG4s3vwgg3wrKjew5E+1wGKRrtx+el4=", - "output": "tee", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tee" - ], - "name": "cosmos-tee" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tee//:tee", - "name": "tee" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-djzefI/wv2XCnNfvFpjfTIJVly06qkSAsV4BoV0gUEo=", - "output": "test", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/test" - ], - "name": "cosmos-test" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-test//:test", - "name": "test" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-20zyJkRs1n5tzbPTbXPfAt9CaVDsbpGZws8bddOY16E=", - "output": "tidy", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tidy" - ], - "name": "cosmos-tidy" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tidy//:tidy", - "name": "tidy" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-aasJBcTgrDU0Xs4V4UkUW8Wsle1EdXnPdf0Fymw0Fpc=", - "output": "timeout", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/timeout" - ], - "name": "cosmos-timeout" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-timeout//:timeout", - "name": "timeout" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ZbW548NXsKv7puCJc+hHvF2hpYI7MQvZc//FAH7oTUI=", - "output": "tmux", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tmux" - ], - "name": "cosmos-tmux" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tmux//:tmux", - "name": "tmux" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Qtxc3zlOZg2B3dXeUABQUcyFdjFCV6WPVQUr8DQP1qk=", - "output": "touch", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/touch" - ], - "name": "cosmos-touch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-touch//:touch", - "name": "touch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-1l1OkCTePV8SDxVQyoTtvK0fHCR9Hf+ebHGh5gEriyY=", - "output": "tr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tr" - ], - "name": "cosmos-tr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tr//:tr", - "name": "tr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-B0m9Z2PoklikdfkbU1QyFsjlFkVzUemLSGmQTC/OL5I=", - "output": "tree", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tree" - ], - "name": "cosmos-tree" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tree//:tree", - "name": "tree" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Cp9RvWCvc8NmfZbMhdDz38cA8YJDVRswENEggHgEoVY=", - "output": "true", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/true" - ], - "name": "cosmos-true" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-true//:true", - "name": "true" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-/u7bZBCAYeEeEeST5/9z3pmy6bgP0FAGUaUOED/Rppo=", - "output": "truncate", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/truncate" - ], - "name": "cosmos-truncate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-truncate//:truncate", - "name": "truncate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-uTgUXY/AU+WyqjwbCR5AS8O7wzN5pROWV1Jp0hmpykc=", - "output": "tsort", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tsort" - ], - "name": "cosmos-tsort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tsort//:tsort", - "name": "tsort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-q7ACSLuBRoj8S/6SACtld7x6LC/HbxTjGeY7vu/8ENg=", - "output": "tty", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tty" - ], - "name": "cosmos-tty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-tty//:tty", - "name": "tty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-30KPzAvNZ0hGPsi+hFXWgEQhItcB1bvRNJY+cokdcTo=", - "output": "ttyinfo", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ttyinfo" - ], - "name": "cosmos-ttyinfo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-ttyinfo//:ttyinfo", - "name": "ttyinfo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Q7/iZUHTlmCUQN6rw8cg7V+tb2A8RCDOnRfR9TZoMq4=", - "output": "unbourne", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unbourne" - ], - "name": "cosmos-unbourne" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-unbourne//:unbourne", - "name": "unbourne" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-1aCgwxoQk7SzJXBlADz3cf/V2vMMcys0MQ3fwaICx2U=", - "output": "unexpand", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unexpand" - ], - "name": "cosmos-unexpand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-unexpand//:unexpand", - "name": "unexpand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-A6UVJI2TAChs4PaCnCbjOYK74QvhoPef+7iVhgV4urA=", - "output": "uniq", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uniq" - ], - "name": "cosmos-uniq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-uniq//:uniq", - "name": "uniq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-utJGVV1+wC3tQEdJ9kvr1c17Co2ljegM/+0ASl1WlUQ=", - "output": "unlink", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unlink" - ], - "name": "cosmos-unlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-unlink//:unlink", - "name": "unlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-CuORPmGI+lGcTM34owoLe6NA5O3sO2z6s/u32+52Ay8=", - "output": "unzip", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unzip" - ], - "name": "cosmos-unzip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-unzip//:unzip", - "name": "unzip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-m/S29ntFqzWNnInIxt6M+G0bXQVRRJullJ6+Cn0t5FM=", - "output": "uptime", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uptime" - ], - "name": "cosmos-uptime" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-uptime//:uptime", - "name": "uptime" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-i5UF16OR/uwcu/Zawzk0Qnj8ng5gKbwWcJQ075HRT/Y=", - "output": "users", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/users" - ], - "name": "cosmos-users" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-users//:users", - "name": "users" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-iXYsmmp973x1uSnX+4na5G8sHJ5K4Y9en1GX1h8w/Xc=", - "output": "vdir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vdir" - ], - "name": "cosmos-vdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-vdir//:vdir", - "name": "vdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-49xc858RJTKnORI8VR/qm+rWmw8685O40dyO3xA9MX4=", - "output": "verynice", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/verynice" - ], - "name": "cosmos-verynice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-verynice//:verynice", - "name": "verynice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-wf8JV2UJG15mrkruoVW5mCYRziO5+mYtoinHR/MH88o=", - "output": "vim", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vim" - ], - "name": "cosmos-vim" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-vim//:vim", - "name": "vim" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-yPDUoIdP/jcggElRwyiHqkS89gnVDzBzkCNwJfe8E9U=", - "output": "wall", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wall" - ], - "name": "cosmos-wall" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-wall//:wall", - "name": "wall" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-0QcoEnBZYML3zxx+8F5OywXn5KlJ2put3tVTtenRivU=", - "output": "wc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wc" - ], - "name": "cosmos-wc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-wc//:wc", - "name": "wc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Cc6S4q1wHliGSWDZl2WVxDz+9YEdum6tFA7PLvw/UII=", - "output": "wget", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wget" - ], - "name": "cosmos-wget" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-wget//:wget", - "name": "wget" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-f/7aVNcB5lYIhOpfxiqch8S22b+nI25TrI2C2bSKXI8=", - "output": "who", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/who" - ], - "name": "cosmos-who" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-who//:who", - "name": "who" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-71b9T2z17+0j8711Eyw1rWrrTBv39cIgqEk85KlWSXw=", - "output": "whoami", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/whoami" - ], - "name": "cosmos-whoami" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-whoami//:whoami", - "name": "whoami" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-bP3uyxPEzbL5QeMJCTtvQPrhpiXut+iHTTeGuOCpNJg=", - "output": "xargs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xargs" - ], - "name": "cosmos-xargs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-xargs//:xargs", - "name": "xargs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-gTBKAnJyqP88kGYtlkZcdldoFU2J6VtcQCtfXfhrJDE=", - "output": "xz", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xz" - ], - "name": "cosmos-xz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-xz//:xz", - "name": "xz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-ZGiA91He1rL0kZKHXUUH8qWmaLly/3QxtKO0R8avkbA=", - "output": "yes", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/yes" - ], - "name": "cosmos-yes" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-yes//:yes", - "name": "yes" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-Pba62aWW0gpT1wJK8Aa7HWwf3foaXnEUMxkfN8pZ01E=", - "output": "zip", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zip" - ], - "name": "cosmos-zip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-zip//:zip", - "name": "zip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-JKePwqxk9+6vQbRdaGA/nZg0hNBn40mE3sKY1ftzxtQ=", - "output": "zsh", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zsh" - ], - "name": "cosmos-zsh" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-zsh//:zsh", - "name": "zsh" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/file:defs.bzl%download_file", - "attributeValues": { - "executable": true, - "integrity": "sha256-NBtbg/4vD4sgHfqxK9DiUzdtJgu3+lER8GYZ8irR40E=", - "output": "zstd", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zstd" - ], - "name": "cosmos-zstd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 54, - "column": 22 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cosmos-zstd//:zstd", - "name": "zstd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 61, - "column": 23 - } - }, - { - "tagName": "@download_utils//download/archive:defs.bzl%download_archive", - "attributeValues": { - "srcs": [ - "bin/*" - ], - "integrity": "sha256-ky+wwBWUS38eUFu5O3q/w7S2l7UGSJEDZAuYLmKGjc8=", - "urls": [ - "https://github.com/ahgamut/superconfigure/releases/download/z0.0.33/cli.zip" - ], - "name": "cli" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 224, - "column": 17 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/diff", - "name": "diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/diff3", - "name": "diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/sdiff", - "name": "sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/cmp", - "name": "cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - }, - { - "tagName": "//ape/entrypoint:defs.bzl%ape_entrypoint", - "attributeValues": { - "binary": "@cli//:bin/patch", - "name": "patch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 233, - "column": 23 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - }, - { - "extensionBzlFile": "@toolchain_utils//toolchain/export:defs.bzl", - "extensionName": "toolchain_export", - "usingModule": "ape@1.0.0-alpha.3", - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 50, - "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-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-b2sum", - "target": "@b2sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-base32", - "target": "@base32" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-base64", - "target": "@base64" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-basename", - "target": "@basename" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-basenc", - "target": "@basenc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-bash", - "target": "@bash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-berry", - "target": "@berry" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-brotli", - "target": "@brotli" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-bzip2", - "target": "@bzip2" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cat", - "target": "@cat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-chcon", - "target": "@chcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-chgrp", - "target": "@chgrp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-chown", - "target": "@chown" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-chroot", - "target": "@chroot" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cksum", - "target": "@cksum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-clang-format", - "target": "@clang-format" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-comm", - "target": "@comm" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cpuid", - "target": "@cpuid" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-csplit", - "target": "@csplit" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ctags", - "target": "@ctags" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-curl", - "target": "@curl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cut", - "target": "@cut" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-dash", - "target": "@dash" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-datasette", - "target": "@datasette" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-date", - "target": "@date" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-df", - "target": "@df" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-dir", - "target": "@dir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-dircolors", - "target": "@dircolors" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-dirname", - "target": "@dirname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-du", - "target": "@du" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-emacs", - "target": "@emacs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-emacsclient", - "target": "@emacsclient" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-env", - "target": "@env" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-expand", - "target": "@expand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-expr", - "target": "@expr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-factor", - "target": "@factor" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-false", - "target": "@false" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-find", - "target": "@find" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-fmt", - "target": "@fmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-fold", - "target": "@fold" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-gmake", - "target": "@gmake" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-greenbean", - "target": "@greenbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-grep", - "target": "@grep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-groups", - "target": "@groups" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-head", - "target": "@head" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-id", - "target": "@id" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-install", - "target": "@install" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-join", - "target": "@join" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-kill", - "target": "@kill" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-less", - "target": "@less" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-life", - "target": "@life" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-link", - "target": "@link" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-links", - "target": "@links" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ln", - "target": "@ln" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-locate", - "target": "@locate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-logname", - "target": "@logname" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ls", - "target": "@ls" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-lua", - "target": "@lua" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-lz4", - "target": "@lz4" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-make", - "target": "@make" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-md5sum", - "target": "@md5sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-mkfifo", - "target": "@mkfifo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-mknod", - "target": "@mknod" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-mktemp", - "target": "@mktemp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-mktemper", - "target": "@mktemper" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nano", - "target": "@nano" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nesemu1", - "target": "@nesemu1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nice", - "target": "@nice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ninja", - "target": "@ninja" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nl", - "target": "@nl" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nohup", - "target": "@nohup" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-nproc", - "target": "@nproc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-numfmt", - "target": "@numfmt" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-od", - "target": "@od" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-paste", - "target": "@paste" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pathchk", - "target": "@pathchk" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pigz", - "target": "@pigz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pinky", - "target": "@pinky" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pledge", - "target": "@pledge" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pr", - "target": "@pr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-printenv", - "target": "@printenv" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-printimage", - "target": "@printimage" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ptx", - "target": "@ptx" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pwd", - "target": "@pwd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-pypack1", - "target": "@pypack1" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-python", - "target": "@python" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-qjs", - "target": "@qjs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-readlink", - "target": "@readlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-realpath", - "target": "@realpath" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-redbean", - "target": "@redbean" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-rmdir", - "target": "@rmdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-rsync", - "target": "@rsync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-runcon", - "target": "@runcon" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-script", - "target": "@script" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sed", - "target": "@sed" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-seq", - "target": "@seq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sha1sum", - "target": "@sha1sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sha224sum", - "target": "@sha224sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sha256sum", - "target": "@sha256sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sha384sum", - "target": "@sha384sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sha512sum", - "target": "@sha512sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-shred", - "target": "@shred" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-shuf", - "target": "@shuf" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sleep", - "target": "@sleep" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sort", - "target": "@sort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-split", - "target": "@split" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sqlite3", - "target": "@sqlite3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-stat", - "target": "@stat" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-stty", - "target": "@stty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sum", - "target": "@sum" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sync", - "target": "@sync" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tac", - "target": "@tac" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tail", - "target": "@tail" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tar", - "target": "@tar" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tee", - "target": "@tee" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-test", - "target": "@test" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tidy", - "target": "@tidy" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-timeout", - "target": "@timeout" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tmux", - "target": "@tmux" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-touch", - "target": "@touch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tr", - "target": "@tr" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tree", - "target": "@tree" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-true", - "target": "@true" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-truncate", - "target": "@truncate" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tsort", - "target": "@tsort" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-tty", - "target": "@tty" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-ttyinfo", - "target": "@ttyinfo" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-unbourne", - "target": "@unbourne" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-unexpand", - "target": "@unexpand" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-uniq", - "target": "@uniq" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-unlink", - "target": "@unlink" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-unzip", - "target": "@unzip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-uptime", - "target": "@uptime" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-users", - "target": "@users" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-vdir", - "target": "@vdir" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-verynice", - "target": "@verynice" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-vim", - "target": "@vim" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-wall", - "target": "@wall" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-wc", - "target": "@wc" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-wget", - "target": "@wget" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-who", - "target": "@who" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-whoami", - "target": "@whoami" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-xargs", - "target": "@xargs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-xz", - "target": "@xz" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-yes", - "target": "@yes" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-zip", - "target": "@zip" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-zsh", - "target": "@zsh" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-zstd", - "target": "@zstd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 65, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-diff", - "target": "@diff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-diff3", - "target": "@diff3" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-sdiff", - "target": "@sdiff" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-cmp", - "target": "@cmp" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - }, - { - "tagName": "symlink", - "attributeValues": { - "name": "ape-patch", - "target": "@patch" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/ape/1.0.0-alpha.3/MODULE.bazel", - "line": 237, - "column": 23 - } - } - ], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "toolchain_utils": "toolchain_utils@1.0.0-beta.4", - "download_utils": "download_utils@1.0.0-beta.1", - "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": "ape~1.0.0-alpha.3", - "urls": [ - "https://gitlab.arm.com/bazel/ape/-/releases/v1.0.0-alpha.3/downloads/src.tar.gz" - ], - "integrity": "sha512-JdEQJfZEAFr6S17FHuuLNU/59advG/bsj0d+RkwR0yzKg3vCX0fG9IQpslyTzL5lmNl7ieYRxGm8wktUykdZWw==", - "strip_prefix": "ape-v1.0.0-alpha.3", - "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" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@rules_java//java:extensions.bzl", - "extensionName": "toolchains", - "usingModule": "rules_java@7.1.0", - "location": { - "file": "https://bcr.bazel.build/modules/rules_java/7.1.0/MODULE.bazel", - "line": 19, - "column": 27 - }, - "imports": { - "remote_java_tools": "remote_java_tools", - "remote_java_tools_linux": "remote_java_tools_linux", - "remote_java_tools_windows": "remote_java_tools_windows", - "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", - "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64", - "local_jdk": "local_jdk", - "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo", - "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo", - "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo", - "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo", - "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo", - "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo", - "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo", - "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo", - "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo", - "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo", - "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo", - "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo", - "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo", - "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo", - "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo", - "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo", - "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo", - "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo", - "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo", - "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo", - "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "platforms": "platforms@0.0.8", - "rules_cc": "rules_cc@0.0.9", - "bazel_skylib": "bazel_skylib@1.5.0", - "rules_proto": "rules_proto@6.0.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": "rules_java~7.1.0", - "urls": [ - "https://github.com/bazelbuild/rules_java/releases/download/7.1.0/rules_java-7.1.0.tar.gz" - ], - "integrity": "sha256-o3pOX2OrgnFuXdau75iO2EYcegC46TYnImKJn1h81OE=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_license@0.0.7": { - "name": "rules_license", - "version": "0.0.7", - "key": "rules_license@0.0.7", - "repoName": "rules_license", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_license~0.0.7", - "urls": [ - "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz" - ], - "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, - "rules_python@0.4.0": { - "name": "rules_python", - "version": "0.4.0", - "key": "rules_python@0.4.0", - "repoName": "rules_python", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@bazel_tools//tools/python:autodetecting_toolchain" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@rules_python//bzlmod:extensions.bzl", - "extensionName": "pip_install", - "usingModule": "rules_python@0.4.0", - "location": { - "file": "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel", - "line": 7, - "column": 28 - }, - "imports": { - "pypi__click": "pypi__click", - "pypi__pip": "pypi__pip", - "pypi__pip_tools": "pypi__pip_tools", - "pypi__pkginfo": "pypi__pkginfo", - "pypi__setuptools": "pypi__setuptools", - "pypi__wheel": "pypi__wheel" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0", - "urls": [ - "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz" - ], - "integrity": "sha256-lUqom0kb5KCDMEosuDgBnIuMNyCnq7nEy4GseiQjDOo=", - "strip_prefix": "", - "remote_patches": { - "https://bcr.bazel.build/modules/rules_python/0.4.0/patches/propagate_pip_install_dependencies.patch": "sha256-v7S/dem/mixg63MF4KoRGDA4KEol9ab/tIVp+6Xq0D0=", - "https://bcr.bazel.build/modules/rules_python/0.4.0/patches/module_dot_bazel.patch": "sha256-kG4VIfWxQazzTuh50mvsx6pmyoRVA4lfH5rkto/Oq+Y=" - }, - "remote_patch_strip": 1 - } - } - }, - "zlib@1.3": { - "name": "zlib", - "version": "1.3", - "key": "zlib@1.3", - "repoName": "zlib", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "platforms": "platforms@0.0.8", - "rules_cc": "rules_cc@0.0.9", - "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": "zlib~1.3", - "urls": [ - "https://github.com/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz" - ], - "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=", - "strip_prefix": "zlib-1.3", - "remote_patches": { - "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=", - "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk=" - }, - "remote_patch_strip": 0 - } - } - }, - "apple_support@1.5.0": { - "name": "apple_support", - "version": "1.5.0", - "key": "apple_support@1.5.0", - "repoName": "build_bazel_apple_support", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@local_config_apple_cc_toolchains//:all" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl", - "extensionName": "apple_cc_configure_extension", - "usingModule": "apple_support@1.5.0", - "location": { - "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel", - "line": 17, - "column": 35 - }, - "imports": { - "local_config_apple_cc": "local_config_apple_cc", - "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains" - }, - "devImports": [], - "tags": [], - "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": "apple_support~1.5.0", - "urls": [ - "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz" - ], - "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=", - "strip_prefix": "", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - } - }, - "moduleExtensions": { - "@@ape~1.0.0-alpha.3//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "6pR3uBIwJUKWxgVyaTrCm23UmfZ4GxKfaMrBvcMxfPQ=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "ape-arm64.elf": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-h3zL1GUkMGVCbLSjyrQ1GsrZGGSfhlZVa7YEiC7q0I8=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-arm64.elf" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~ape-arm64.elf" - } - }, - "ape-x86_64.elf": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-fBz4sk4bbdatfaOBcEXVgq2hRrTW7AxqRb6oMOOmX00=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.elf" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~ape-x86_64.elf" - } - }, - "ape-x86_64.macho": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-btvd3YJTsgZojeJJGIrf2OuFDpw9nxmEMleBS5NsWZg=", - "output": "ape", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ape-x86_64.macho" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~ape-x86_64.macho" - } - }, - "ape.pe": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/pe:repository.bzl", - "ruleClassName": "pe", - "attributes": { - "name": "ape~1.0.0-alpha.3~_repo_rules~ape.pe" - } - }, - "launcher": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/select:repository.bzl", - "ruleClassName": "select", - "attributes": { - "map": { - "arm64-linux": "@ape-arm64.elf", - "amd64-linux": "@ape-x86_64.elf", - "amd64-darwin": "@ape-x86_64.macho", - "windows": "@ape.pe" - }, - "name": "ape~1.0.0-alpha.3~_repo_rules~launcher" - } - }, - "cosmos-awk": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-f+uWrpvZmKp0icmVlTusCWs4TvqR2FrmOkQ1E7JEo/Q=", - "output": "awk", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/awk" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-awk" - } - }, - "awk": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-awk//:awk", - "name": "ape~1.0.0-alpha.3~_repo_rules~awk" - } - }, - "cosmos-b2sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-C0A+VvLQwqWyZ43zLhgi3tX5X8mCSGUT4kBoTsCtsOA=", - "output": "b2sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/b2sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-b2sum" - } - }, - "b2sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-b2sum//:b2sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~b2sum" - } - }, - "cosmos-base32": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-UKvhDPWxj5CBiJcC8v22sLAkAMRbeyr0HgsQT3aRpJo=", - "output": "base32", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base32" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-base32" - } - }, - "base32": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-base32//:base32", - "name": "ape~1.0.0-alpha.3~_repo_rules~base32" - } - }, - "cosmos-base64": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Ma0Uq9TjmARCgwZWzTBcuEFyIkMXUahQqms9sUQPYjE=", - "output": "base64", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/base64" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-base64" - } - }, - "base64": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-base64//:base64", - "name": "ape~1.0.0-alpha.3~_repo_rules~base64" - } - }, - "cosmos-basename": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wVt/L/UlzFofy0HnJzUxwSipYmqvpnWSYNffI6kHSOg=", - "output": "basename", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basename" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-basename" - } - }, - "basename": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-basename//:basename", - "name": "ape~1.0.0-alpha.3~_repo_rules~basename" - } - }, - "cosmos-basenc": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ss0EQU9BQPJDOhFS2kyr39G9ql6cme2hKhJ5LXu41No=", - "output": "basenc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/basenc" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-basenc" - } - }, - "basenc": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-basenc//:basenc", - "name": "ape~1.0.0-alpha.3~_repo_rules~basenc" - } - }, - "cosmos-bash": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-817s6bXbU96XAE/lpw/bVjtaG/HZNkiM2orJBhKWaXY=", - "output": "bash", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bash" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-bash" - } - }, - "bash": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-bash//:bash", - "name": "ape~1.0.0-alpha.3~_repo_rules~bash" - } - }, - "cosmos-berry": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-iRihZOPxJy8riq00G9QqyuDphQGZW87arvQa7wu5WJ0=", - "output": "berry", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/berry" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-berry" - } - }, - "berry": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-berry//:berry", - "name": "ape~1.0.0-alpha.3~_repo_rules~berry" - } - }, - "cosmos-brotli": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-5dbhyGt64HdqXrSmTVdOlpyVgW3A3FTcRy9JNKlETbE=", - "output": "brotli", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/brotli" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-brotli" - } - }, - "brotli": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-brotli//:brotli", - "name": "ape~1.0.0-alpha.3~_repo_rules~brotli" - } - }, - "cosmos-bzip2": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-i0jxsBCz1axEaa9Kd1TFPTFwAVYFhbR6dGqUl/OfwYQ=", - "output": "bzip2", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/bzip2" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-bzip2" - } - }, - "bzip2": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-bzip2//:bzip2", - "name": "ape~1.0.0-alpha.3~_repo_rules~bzip2" - } - }, - "cosmos-cat": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hxd0pfBMmXT44ii103FiMUI3pQYHj7UmNW4pqnw12HY=", - "output": "cat", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cat" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-cat" - } - }, - "cat": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-cat//:cat", - "name": "ape~1.0.0-alpha.3~_repo_rules~cat" - } - }, - "cosmos-chcon": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-NKrTh2us8Pc67LI7udJg9JhlhobHU03laNr4U+5DhF8=", - "output": "chcon", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chcon" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-chcon" - } - }, - "chcon": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-chcon//:chcon", - "name": "ape~1.0.0-alpha.3~_repo_rules~chcon" - } - }, - "cosmos-chgrp": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-7KvHpFFsvhK981vIlGyegWuQhIzxY87lYcYfNB/qdC8=", - "output": "chgrp", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chgrp" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-chgrp" - } - }, - "chgrp": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-chgrp//:chgrp", - "name": "ape~1.0.0-alpha.3~_repo_rules~chgrp" - } - }, - "cosmos-chown": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-XlKnJcZ1t7cdBKC2twaXC8/X6p7bSpnFoIDQ0xxdrhQ=", - "output": "chown", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chown" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-chown" - } - }, - "chown": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-chown//:chown", - "name": "ape~1.0.0-alpha.3~_repo_rules~chown" - } - }, - "cosmos-chroot": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-lN46T08G7T85BC9L/q4k9vlLwNKWbyD0YkAclHWUGuw=", - "output": "chroot", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/chroot" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-chroot" - } - }, - "chroot": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-chroot//:chroot", - "name": "ape~1.0.0-alpha.3~_repo_rules~chroot" - } - }, - "cosmos-cksum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZN7kzOdpdzCUsa+1+2dsZ19980fhL5x7tnYdKRqW7OY=", - "output": "cksum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cksum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-cksum" - } - }, - "cksum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-cksum//:cksum", - "name": "ape~1.0.0-alpha.3~_repo_rules~cksum" - } - }, - "cosmos-clang-format": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-t1/HDaTZ/klR+VFONNcqj5uxgIm37dafKu5Mp99ecVQ=", - "output": "clang-format", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/clang-format" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-clang-format" - } - }, - "clang-format": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-clang-format//:clang-format", - "name": "ape~1.0.0-alpha.3~_repo_rules~clang-format" - } - }, - "cosmos-comm": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Z4pMcRlfC6n9KC5Z8cSZT5NA+e/0Zl30tW4zRB+Ml7I=", - "output": "comm", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/comm" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-comm" - } - }, - "comm": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-comm//:comm", - "name": "ape~1.0.0-alpha.3~_repo_rules~comm" - } - }, - "cosmos-cpuid": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KZ7I9Vj0m0SYjYdlFCDsWAeZZHq5CL2V2/DiBJgVPFE=", - "output": "cpuid", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cpuid" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-cpuid" - } - }, - "cpuid": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-cpuid//:cpuid", - "name": "ape~1.0.0-alpha.3~_repo_rules~cpuid" - } - }, - "cosmos-csplit": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-PnfIPYD2n2cZ8rxV26jvFiE6e+XROXGwhE6sbpjbPSY=", - "output": "csplit", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/csplit" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-csplit" - } - }, - "csplit": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-csplit//:csplit", - "name": "ape~1.0.0-alpha.3~_repo_rules~csplit" - } - }, - "cosmos-ctags": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-6GwrTt16hCzJ8EoVXQXoetwnOIOhBR4T4gX2PO/wIfQ=", - "output": "ctags", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ctags" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ctags" - } - }, - "ctags": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ctags//:ctags", - "name": "ape~1.0.0-alpha.3~_repo_rules~ctags" - } - }, - "cosmos-curl": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-jc8LNKBMlWgGeHW3Tum9M6AfV2a5PlLmJunmfs00q/M=", - "output": "curl", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/curl" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-curl" - } - }, - "curl": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-curl//:curl", - "name": "ape~1.0.0-alpha.3~_repo_rules~curl" - } - }, - "cosmos-cut": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-N6iYRU/Ue0YN1tW0YElHjCVe0aPrUtbSxWFaJUPXGAE=", - "output": "cut", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/cut" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-cut" - } - }, - "cut": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-cut//:cut", - "name": "ape~1.0.0-alpha.3~_repo_rules~cut" - } - }, - "cosmos-dash": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-DQjaobzAoYxtxBvvDdyQLbTvjPV61HLMOahNEXz8dOM=", - "output": "dash", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dash" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-dash" - } - }, - "dash": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-dash//:dash", - "name": "ape~1.0.0-alpha.3~_repo_rules~dash" - } - }, - "cosmos-datasette": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ohY3OEDwK6DOSWfLFlUa/4MTTHd9kKGN8NYTwGyWOZA=", - "output": "datasette", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/datasette" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-datasette" - } - }, - "datasette": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-datasette//:datasette", - "name": "ape~1.0.0-alpha.3~_repo_rules~datasette" - } - }, - "cosmos-date": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-4r91y6qrOb4PK5AQ23uY2lskgprTRGLwDTBOkMPF1/c=", - "output": "date", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/date" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-date" - } - }, - "date": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-date//:date", - "name": "ape~1.0.0-alpha.3~_repo_rules~date" - } - }, - "cosmos-df": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-rrkKRiH346Qfr/uwtOFe5x+Q3X1yajhCndbTxnkkiSI=", - "output": "df", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/df" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-df" - } - }, - "df": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-df//:df", - "name": "ape~1.0.0-alpha.3~_repo_rules~df" - } - }, - "cosmos-dir": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-XfB99aziyrFfAHbOzI36cXPn+633uND4y02Mn9wTx98=", - "output": "dir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dir" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-dir" - } - }, - "dir": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-dir//:dir", - "name": "ape~1.0.0-alpha.3~_repo_rules~dir" - } - }, - "cosmos-dircolors": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FTu1gC+xUzR1NTxaXk9ZLu4Gp2ACwnQC2FvHJySd1/Q=", - "output": "dircolors", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dircolors" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-dircolors" - } - }, - "dircolors": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-dircolors//:dircolors", - "name": "ape~1.0.0-alpha.3~_repo_rules~dircolors" - } - }, - "cosmos-dirname": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-F9LmexRfLOqVyybPSXv+2xBhLakd8fnV01T/yZK78EU=", - "output": "dirname", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/dirname" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-dirname" - } - }, - "dirname": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-dirname//:dirname", - "name": "ape~1.0.0-alpha.3~_repo_rules~dirname" - } - }, - "cosmos-du": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-cwPg/fIABRhBnlWOXTpC7GaIEi/L2vgMqPUAZ8vnxLA=", - "output": "du", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/du" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-du" - } - }, - "du": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-du//:du", - "name": "ape~1.0.0-alpha.3~_repo_rules~du" - } - }, - "cosmos-emacs": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FHVaf2drHxbWKWpCc0pBlt8NNLiR6x6pX9KrhCkI5zM=", - "output": "emacs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacs" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-emacs" - } - }, - "emacs": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-emacs//:emacs", - "name": "ape~1.0.0-alpha.3~_repo_rules~emacs" - } - }, - "cosmos-emacsclient": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-2p9WFK4fF0vnJDUyNTd6a4jigqsQpp0aG41e0MQSJOM=", - "output": "emacsclient", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/emacsclient" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-emacsclient" - } - }, - "emacsclient": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-emacsclient//:emacsclient", - "name": "ape~1.0.0-alpha.3~_repo_rules~emacsclient" - } - }, - "cosmos-env": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KSmB7dXht0FmmkJB8JQnUw6uQIfG36SugQXyMdPKPso=", - "output": "env", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/env" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-env" - } - }, - "env": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-env//:env", - "name": "ape~1.0.0-alpha.3~_repo_rules~env" - } - }, - "cosmos-expand": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-GDxdiCM3bnYQtE+brm6GgDN7EyjV+5vxYj1McQ/YGLQ=", - "output": "expand", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expand" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-expand" - } - }, - "expand": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-expand//:expand", - "name": "ape~1.0.0-alpha.3~_repo_rules~expand" - } - }, - "cosmos-expr": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-GD2DSrlrlym+z+57/BUKL50paNN1QU6FGe1D3wxtnnk=", - "output": "expr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/expr" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-expr" - } - }, - "expr": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-expr//:expr", - "name": "ape~1.0.0-alpha.3~_repo_rules~expr" - } - }, - "cosmos-factor": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Pmziyh/iAkeaU/XHmAblS/4QfA6YDbml6qSX/yqVj6s=", - "output": "factor", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/factor" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-factor" - } - }, - "factor": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-factor//:factor", - "name": "ape~1.0.0-alpha.3~_repo_rules~factor" - } - }, - "cosmos-false": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FuIagCcD2snlx2D2D2k5+qhA2KXgWcoxMDY7O1qlE74=", - "output": "false", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/false" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-false" - } - }, - "false": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-false//:false", - "name": "ape~1.0.0-alpha.3~_repo_rules~false" - } - }, - "cosmos-find": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-k3BJOldX6NzX1Aq/RX6Q6PQts/3l9IFR7BILMIDUkg8=", - "output": "find", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/find" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-find" - } - }, - "find": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-find//:find", - "name": "ape~1.0.0-alpha.3~_repo_rules~find" - } - }, - "cosmos-fmt": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZjBJtahjGrr6Xll85ZZo+lTGEZNdaSksUNqpkpMqyrY=", - "output": "fmt", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fmt" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-fmt" - } - }, - "fmt": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-fmt//:fmt", - "name": "ape~1.0.0-alpha.3~_repo_rules~fmt" - } - }, - "cosmos-fold": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-u5I83GpxaXBKFtzsJVJEWdQ1hJkpRmJGbQVHzjOYJ3w=", - "output": "fold", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/fold" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-fold" - } - }, - "fold": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-fold//:fold", - "name": "ape~1.0.0-alpha.3~_repo_rules~fold" - } - }, - "cosmos-gmake": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-o5a22Uli7i9upNh3z9qwPRFv3vIF7hOSdYMCXz8ioQc=", - "output": "gmake", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/gmake" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-gmake" - } - }, - "gmake": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-gmake//:gmake", - "name": "ape~1.0.0-alpha.3~_repo_rules~gmake" - } - }, - "cosmos-greenbean": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-2e6ANHtNrFdAKdmSAVBOYWacqaF9SxOhrwKesYwIfSc=", - "output": "greenbean", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/greenbean" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-greenbean" - } - }, - "greenbean": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-greenbean//:greenbean", - "name": "ape~1.0.0-alpha.3~_repo_rules~greenbean" - } - }, - "cosmos-grep": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-btb7IC+1GiiU+CTMX4F7F8ESESShnVx90+Vz8uhgkkA=", - "output": "grep", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/grep" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-grep" - } - }, - "grep": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-grep//:grep", - "name": "ape~1.0.0-alpha.3~_repo_rules~grep" - } - }, - "cosmos-groups": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-1hRskXbgQrpy3YedFo9SmYix5KUTJAV9cL6I0T/DF7c=", - "output": "groups", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/groups" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-groups" - } - }, - "groups": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-groups//:groups", - "name": "ape~1.0.0-alpha.3~_repo_rules~groups" - } - }, - "cosmos-head": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-I4EetDV9GYYKHCNANar3iwNNZMJhJ9+KaQBkWyA0r7o=", - "output": "head", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/head" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-head" - } - }, - "head": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-head//:head", - "name": "ape~1.0.0-alpha.3~_repo_rules~head" - } - }, - "cosmos-id": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-JtW0OHrUUwEaHsb03yfoawekOVad+XZ2sl8ZnM0+rYc=", - "output": "id", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/id" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-id" - } - }, - "id": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-id//:id", - "name": "ape~1.0.0-alpha.3~_repo_rules~id" - } - }, - "cosmos-install": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FT0vE0RtmwB2+ArCfbm59mou/sLQzymNvTqogiVpRTg=", - "output": "install", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/install" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-install" - } - }, - "install": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-install//:install", - "name": "ape~1.0.0-alpha.3~_repo_rules~install" - } - }, - "cosmos-join": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KVBK8dBkDM+LijUS4hi7zNsa18hZvJqNS6uWQMvxgWs=", - "output": "join", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/join" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-join" - } - }, - "join": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-join//:join", - "name": "ape~1.0.0-alpha.3~_repo_rules~join" - } - }, - "cosmos-kill": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-+4mYRIwPgtQ7BEoK7/E6vXx5iriV3vpk0eNrNI2kNh8=", - "output": "kill", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/kill" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-kill" - } - }, - "kill": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-kill//:kill", - "name": "ape~1.0.0-alpha.3~_repo_rules~kill" - } - }, - "cosmos-less": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ku05PfJLk7zICV/ljbzXavHBvnMlitaLcd3uJvfZcfU=", - "output": "less", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/less" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-less" - } - }, - "less": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-less//:less", - "name": "ape~1.0.0-alpha.3~_repo_rules~less" - } - }, - "cosmos-life": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-8XQ3CXLLxo7ykT/+jGJovYCAzSEih6H4wnQ26+Q04lM=", - "output": "life", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/life" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-life" - } - }, - "life": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-life//:life", - "name": "ape~1.0.0-alpha.3~_repo_rules~life" - } - }, - "cosmos-link": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-MRqILGFYuhtO470TDsIxfQe7NE1GrHjbWCnU2nb31QQ=", - "output": "link", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/link" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-link" - } - }, - "link": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-link//:link", - "name": "ape~1.0.0-alpha.3~_repo_rules~link" - } - }, - "cosmos-links": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Px+ZWWbcFLnnjuORljLehyqLBW3UIuGtEqQf3vnJXgo=", - "output": "links", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/links" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-links" - } - }, - "links": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-links//:links", - "name": "ape~1.0.0-alpha.3~_repo_rules~links" - } - }, - "cosmos-ln": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-QevM7NFKo4T79iCOOu6JjAxVuoQHAiSi3zkYf3HQoHI=", - "output": "ln", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ln" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ln" - } - }, - "ln": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ln//:ln", - "name": "ape~1.0.0-alpha.3~_repo_rules~ln" - } - }, - "cosmos-locate": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-zsyqygY6K+gwbw9Cw7j+JEjd1W4T66xKil7PqeFtfA8=", - "output": "locate", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/locate" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-locate" - } - }, - "locate": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-locate//:locate", - "name": "ape~1.0.0-alpha.3~_repo_rules~locate" - } - }, - "cosmos-logname": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-if+qby9Pyn2PT53NEIoPXW/xusX5N8TK6lFNhOYEk7A=", - "output": "logname", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/logname" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-logname" - } - }, - "logname": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-logname//:logname", - "name": "ape~1.0.0-alpha.3~_repo_rules~logname" - } - }, - "cosmos-ls": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-09ABdeL9W/aloHvspUOTk4s1qXPKelusGWs/fI5elBY=", - "output": "ls", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ls" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ls" - } - }, - "ls": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ls//:ls", - "name": "ape~1.0.0-alpha.3~_repo_rules~ls" - } - }, - "cosmos-lua": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-xuf+7nkxzN/uNIJ8j7adEqf6dvm3X+QT4LeDtRBeoBM=", - "output": "lua", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lua" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-lua" - } - }, - "lua": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-lua//:lua", - "name": "ape~1.0.0-alpha.3~_repo_rules~lua" - } - }, - "cosmos-lz4": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hS8xfK0iRyQ51wndmPpRqC2iJfJzvk4OSPtdBNoDzIg=", - "output": "lz4", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/lz4" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-lz4" - } - }, - "lz4": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-lz4//:lz4", - "name": "ape~1.0.0-alpha.3~_repo_rules~lz4" - } - }, - "cosmos-make": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-oxtmxi2jmEKg2EX4gzBsmikSI3H56Cb4TL5JDLrHmes=", - "output": "make", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/make" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-make" - } - }, - "make": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-make//:make", - "name": "ape~1.0.0-alpha.3~_repo_rules~make" - } - }, - "cosmos-md5sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-V02adwdclgCCznwYMv8TzulmGsJCj0nY6BbLm9+3BmI=", - "output": "md5sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/md5sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-md5sum" - } - }, - "md5sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-md5sum//:md5sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~md5sum" - } - }, - "cosmos-mkfifo": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Qn7ki2D6CeAj35bXjjdtn8uoTIWvQzrJQgQW5YwVjNE=", - "output": "mkfifo", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mkfifo" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-mkfifo" - } - }, - "mkfifo": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-mkfifo//:mkfifo", - "name": "ape~1.0.0-alpha.3~_repo_rules~mkfifo" - } - }, - "cosmos-mknod": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-WuoCTQkW92gL+rkPEsIVekSW3T5jWpLe4d0tkEEVlto=", - "output": "mknod", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mknod" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-mknod" - } - }, - "mknod": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-mknod//:mknod", - "name": "ape~1.0.0-alpha.3~_repo_rules~mknod" - } - }, - "cosmos-mktemp": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-e4OIGcZD2+IeoysBxEx3+PzbkFxduS3t17Xh6APVTg0=", - "output": "mktemp", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemp" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-mktemp" - } - }, - "mktemp": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-mktemp//:mktemp", - "name": "ape~1.0.0-alpha.3~_repo_rules~mktemp" - } - }, - "cosmos-mktemper": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ukMdMND+GwcBR+OdH6KDdHTYSOc1pKWAbYomyj9ZoOo=", - "output": "mktemper", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/mktemper" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-mktemper" - } - }, - "mktemper": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-mktemper//:mktemper", - "name": "ape~1.0.0-alpha.3~_repo_rules~mktemper" - } - }, - "cosmos-nano": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-E8aX3D/XXItFzwVS7UO3tCD2I4gCx9K7oqFjkWC+hEA=", - "output": "nano", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nano" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nano" - } - }, - "nano": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nano//:nano", - "name": "ape~1.0.0-alpha.3~_repo_rules~nano" - } - }, - "cosmos-nesemu1": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-3tEEU6VMPK8bwloRQ2CkLXD8+icXne+EBdHUtfYPsmw=", - "output": "nesemu1", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nesemu1" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nesemu1" - } - }, - "nesemu1": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nesemu1//:nesemu1", - "name": "ape~1.0.0-alpha.3~_repo_rules~nesemu1" - } - }, - "cosmos-nice": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ukGk1uudFSnluQXKEtGsAIzL6JhXe4NaLC53QdcyK+E=", - "output": "nice", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nice" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nice" - } - }, - "nice": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nice//:nice", - "name": "ape~1.0.0-alpha.3~_repo_rules~nice" - } - }, - "cosmos-ninja": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-6vNW/WRG9QrsaksgbhhdEPyb9VgzATt2AEJj6jlyfmo=", - "output": "ninja", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ninja" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ninja" - } - }, - "ninja": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ninja//:ninja", - "name": "ape~1.0.0-alpha.3~_repo_rules~ninja" - } - }, - "cosmos-nl": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-per3cJdCvbTUMe1rs76QJ/E9eQYfUl4VVPafj0yJFHk=", - "output": "nl", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nl" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nl" - } - }, - "nl": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nl//:nl", - "name": "ape~1.0.0-alpha.3~_repo_rules~nl" - } - }, - "cosmos-nohup": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-4eCoAypbSFOk/Bgq8jfyv2BPPP78iNLXb711CK8buGU=", - "output": "nohup", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nohup" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nohup" - } - }, - "nohup": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nohup//:nohup", - "name": "ape~1.0.0-alpha.3~_repo_rules~nohup" - } - }, - "cosmos-nproc": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-uKzADOYvOwHwG9Wc7v0EHPJdidt7Vx1CY0ur9QL0ziM=", - "output": "nproc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/nproc" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-nproc" - } - }, - "nproc": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-nproc//:nproc", - "name": "ape~1.0.0-alpha.3~_repo_rules~nproc" - } - }, - "cosmos-numfmt": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-CT5axyDY1ASWxzGJb+hDVTRiWqU2f8+CSzhehOdR/wY=", - "output": "numfmt", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/numfmt" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-numfmt" - } - }, - "numfmt": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-numfmt//:numfmt", - "name": "ape~1.0.0-alpha.3~_repo_rules~numfmt" - } - }, - "cosmos-od": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Hy0uDDsgdci74s+jI+R2Bkgj4LVaW0djddoqkzTebSE=", - "output": "od", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/od" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-od" - } - }, - "od": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-od//:od", - "name": "ape~1.0.0-alpha.3~_repo_rules~od" - } - }, - "cosmos-paste": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Sa5G8cxyh5Vsr6kkf/wmwnos0KYwIUHNI1/dZ16n24U=", - "output": "paste", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/paste" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-paste" - } - }, - "paste": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-paste//:paste", - "name": "ape~1.0.0-alpha.3~_repo_rules~paste" - } - }, - "cosmos-pathchk": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZjR+IGm8fv0b/hy4hmdi1xuxpoA5A7MR0AnGndlfTvc=", - "output": "pathchk", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pathchk" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pathchk" - } - }, - "pathchk": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pathchk//:pathchk", - "name": "ape~1.0.0-alpha.3~_repo_rules~pathchk" - } - }, - "cosmos-pigz": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KReMrcHfifpjgxeb/k4WNl6ZtgJwfDIf9mTbcEldR0w=", - "output": "pigz", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pigz" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pigz" - } - }, - "pigz": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pigz//:pigz", - "name": "ape~1.0.0-alpha.3~_repo_rules~pigz" - } - }, - "cosmos-pinky": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ObmAOis790fvuP+YpdxP9cyR5ISU6BB4G/8un3xR4ns=", - "output": "pinky", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pinky" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pinky" - } - }, - "pinky": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pinky//:pinky", - "name": "ape~1.0.0-alpha.3~_repo_rules~pinky" - } - }, - "cosmos-pledge": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-rcK6umgSKLv06PIV+glVDhKgPr79vfIodUEsZ7WyGaM=", - "output": "pledge", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pledge" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pledge" - } - }, - "pledge": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pledge//:pledge", - "name": "ape~1.0.0-alpha.3~_repo_rules~pledge" - } - }, - "cosmos-pr": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-FVC8+/eRiBZ2MHpZNZRHrRMoDFLi4S9NRMVPQSWimOo=", - "output": "pr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pr" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pr" - } - }, - "pr": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pr//:pr", - "name": "ape~1.0.0-alpha.3~_repo_rules~pr" - } - }, - "cosmos-printenv": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-zoWUC3FJVC6a8iM2vmiEVNa4mjhmLo76aPkh2TXB+bc=", - "output": "printenv", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printenv" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-printenv" - } - }, - "printenv": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-printenv//:printenv", - "name": "ape~1.0.0-alpha.3~_repo_rules~printenv" - } - }, - "cosmos-printimage": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-myO0x/BQSNFuWWwDop0ph/WmO8tBsnxuTIoIzC6Xsaw=", - "output": "printimage", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/printimage" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-printimage" - } - }, - "printimage": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-printimage//:printimage", - "name": "ape~1.0.0-alpha.3~_repo_rules~printimage" - } - }, - "cosmos-ptx": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-x6abLQHeAmLQN213aU0nx+4xfZSfWqlYWP7Fe+wueEs=", - "output": "ptx", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ptx" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ptx" - } - }, - "ptx": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ptx//:ptx", - "name": "ape~1.0.0-alpha.3~_repo_rules~ptx" - } - }, - "cosmos-pwd": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RdIwQz9MZ5PaDIT9y0AY3YZHKYA/tUm8ylYf5RD0S8U=", - "output": "pwd", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pwd" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pwd" - } - }, - "pwd": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pwd//:pwd", - "name": "ape~1.0.0-alpha.3~_repo_rules~pwd" - } - }, - "cosmos-pypack1": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-mb3fmOwEqmunaoKZahHdRh2K8OuOSHFQQIc8Yddppic=", - "output": "pypack1", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/pypack1" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-pypack1" - } - }, - "pypack1": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-pypack1//:pypack1", - "name": "ape~1.0.0-alpha.3~_repo_rules~pypack1" - } - }, - "cosmos-python": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RvuLtLNsExsN10Mipa/ewh1Qr95a0dpOOJ+j3BBht2g=", - "output": "python", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/python" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-python" - } - }, - "python": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-python//:python", - "name": "ape~1.0.0-alpha.3~_repo_rules~python" - } - }, - "cosmos-qjs": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RmszlYwDkeSbX3xZ/0m/yQCgfbJNCflaQ0KHuz1lo/w=", - "output": "qjs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/qjs" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-qjs" - } - }, - "qjs": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-qjs//:qjs", - "name": "ape~1.0.0-alpha.3~_repo_rules~qjs" - } - }, - "cosmos-readlink": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-3/0q9jntaXuBK5+3+FFiUHfnZhVsJILGRyw9C9jsDrM=", - "output": "readlink", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/readlink" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-readlink" - } - }, - "readlink": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-readlink//:readlink", - "name": "ape~1.0.0-alpha.3~_repo_rules~readlink" - } - }, - "cosmos-realpath": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-+Wo9k1u/CGPqtTKgHDjdu6z7UraE444Ez82h69SIKm0=", - "output": "realpath", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/realpath" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-realpath" - } - }, - "realpath": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-realpath//:realpath", - "name": "ape~1.0.0-alpha.3~_repo_rules~realpath" - } - }, - "cosmos-redbean": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-+zB9iVZklOfgaynLhwQG1qTP+/xUZE2A2UyTTIz9iCk=", - "output": "redbean", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/redbean" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-redbean" - } - }, - "redbean": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-redbean//:redbean", - "name": "ape~1.0.0-alpha.3~_repo_rules~redbean" - } - }, - "cosmos-rmdir": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-olbEjveooS5XCXiLtsvXacsfR1l7AFndDB7XRLr3HwU=", - "output": "rmdir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rmdir" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-rmdir" - } - }, - "rmdir": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-rmdir//:rmdir", - "name": "ape~1.0.0-alpha.3~_repo_rules~rmdir" - } - }, - "cosmos-rsync": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-bAJZ6fMDcOpiZ9eNiC/KySEoanb8ZnXL+LBgpOuc8s4=", - "output": "rsync", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/rsync" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-rsync" - } - }, - "rsync": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-rsync//:rsync", - "name": "ape~1.0.0-alpha.3~_repo_rules~rsync" - } - }, - "cosmos-runcon": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-m+7V7IWXjMBts1GcBvTn9yLZrekeJ2PnTIZPDPqbHyg=", - "output": "runcon", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/runcon" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-runcon" - } - }, - "runcon": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-runcon//:runcon", - "name": "ape~1.0.0-alpha.3~_repo_rules~runcon" - } - }, - "cosmos-script": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-gF6Ux0AVHv3VK3ynVCDfwWSzCzcM6tbYUtAEYkE/Lto=", - "output": "script", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/script" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-script" - } - }, - "script": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-script//:script", - "name": "ape~1.0.0-alpha.3~_repo_rules~script" - } - }, - "cosmos-sed": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-mLD3mRX7R9we3IQpAZKC7c4mF2Nz7sG8s63Is0TkYcM=", - "output": "sed", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sed" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sed" - } - }, - "sed": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sed//:sed", - "name": "ape~1.0.0-alpha.3~_repo_rules~sed" - } - }, - "cosmos-seq": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-AkvogLBC9nwhq2rpaA1kL0Q4beb00QMrptcxpzXKjE0=", - "output": "seq", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/seq" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-seq" - } - }, - "seq": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-seq//:seq", - "name": "ape~1.0.0-alpha.3~_repo_rules~seq" - } - }, - "cosmos-sha1sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wDWmXDgJmeEuJUd5ER9ed1rGZRxJMwEe1uR7Jrm4r2o=", - "output": "sha1sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha1sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sha1sum" - } - }, - "sha1sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sha1sum//:sha1sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sha1sum" - } - }, - "cosmos-sha224sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-DPOKHJa+e04UNJm0ptGNf79Qpvdf3OCbAlHKLPFq3oM=", - "output": "sha224sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha224sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sha224sum" - } - }, - "sha224sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sha224sum//:sha224sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sha224sum" - } - }, - "cosmos-sha256sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-BpxhJqv/rboyFhYy31eq5Ym3eriHcGRqOGDdmbWwAuw=", - "output": "sha256sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha256sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sha256sum" - } - }, - "sha256sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sha256sum//:sha256sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sha256sum" - } - }, - "cosmos-sha384sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Ak4+xM3+eGqXyWVghrgtAo80Fgeo6iXd10+K7tOd5HE=", - "output": "sha384sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha384sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sha384sum" - } - }, - "sha384sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sha384sum//:sha384sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sha384sum" - } - }, - "cosmos-sha512sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-qq4HW+6hZ26U/TiN50QPdd710RpiPDjhrG/XfILWxE0=", - "output": "sha512sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sha512sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sha512sum" - } - }, - "sha512sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sha512sum//:sha512sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sha512sum" - } - }, - "cosmos-shred": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-7/edcRznrBT9DOKb05J39nRsjJ30LkH9Pz/5QUlsDH4=", - "output": "shred", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shred" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-shred" - } - }, - "shred": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-shred//:shred", - "name": "ape~1.0.0-alpha.3~_repo_rules~shred" - } - }, - "cosmos-shuf": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-X1v5hF6yG2zM78Qg85wcENzihXXmMZnBTZNleRCscL4=", - "output": "shuf", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/shuf" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-shuf" - } - }, - "shuf": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-shuf//:shuf", - "name": "ape~1.0.0-alpha.3~_repo_rules~shuf" - } - }, - "cosmos-sleep": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-esGxinA9WyISgkcQ7sPIuC7B1SwQHMXmGTYHOhZvAx0=", - "output": "sleep", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sleep" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sleep" - } - }, - "sleep": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sleep//:sleep", - "name": "ape~1.0.0-alpha.3~_repo_rules~sleep" - } - }, - "cosmos-sort": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Ar+SpUClNPT5OItQMiiYH7CBHnSoKHa1jjN32BjqMF4=", - "output": "sort", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sort" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sort" - } - }, - "sort": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sort//:sort", - "name": "ape~1.0.0-alpha.3~_repo_rules~sort" - } - }, - "cosmos-split": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-A5nEGoaZdJ5p1j3s54rgp8/BEoBVakaRE4YAqAMMZbQ=", - "output": "split", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/split" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-split" - } - }, - "split": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-split//:split", - "name": "ape~1.0.0-alpha.3~_repo_rules~split" - } - }, - "cosmos-sqlite3": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-IICFVnTkqMZ/c5PPtIStX89WtBnsmIg3z1qfFJEOXlE=", - "output": "sqlite3", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sqlite3" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sqlite3" - } - }, - "sqlite3": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sqlite3//:sqlite3", - "name": "ape~1.0.0-alpha.3~_repo_rules~sqlite3" - } - }, - "cosmos-stat": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-KO2xc+Vf2HdfUZPh2ItTxfun5CwFNsPQArjJ22fw/a8=", - "output": "stat", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stat" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-stat" - } - }, - "stat": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-stat//:stat", - "name": "ape~1.0.0-alpha.3~_repo_rules~stat" - } - }, - "cosmos-stty": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-S2BXpqZxSI493gq3piyCqH3dwE+yxvvAL1WWxRVd844=", - "output": "stty", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/stty" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-stty" - } - }, - "stty": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-stty//:stty", - "name": "ape~1.0.0-alpha.3~_repo_rules~stty" - } - }, - "cosmos-sum": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Uoro6aH+YK1IIBditsXeyXhwAlR9vqLnLOQ9K8PRSuM=", - "output": "sum", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sum" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sum" - } - }, - "sum": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sum//:sum", - "name": "ape~1.0.0-alpha.3~_repo_rules~sum" - } - }, - "cosmos-sync": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-1iFwSaaAXI3pdNdfrMI9PychzSGJhy0UpDCDTwCn8/U=", - "output": "sync", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/sync" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-sync" - } - }, - "sync": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-sync//:sync", - "name": "ape~1.0.0-alpha.3~_repo_rules~sync" - } - }, - "cosmos-tac": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-RG/VXzGH2MSwHLSQIG61wDmoNR5xYch3+xNbtDUROB4=", - "output": "tac", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tac" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tac" - } - }, - "tac": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tac//:tac", - "name": "ape~1.0.0-alpha.3~_repo_rules~tac" - } - }, - "cosmos-tail": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-hdbjryLVn6c7MR/XX/UhaOS7+QKLYhrJUo+DsE3Xz/E=", - "output": "tail", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tail" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tail" - } - }, - "tail": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tail//:tail", - "name": "ape~1.0.0-alpha.3~_repo_rules~tail" - } - }, - "cosmos-tar": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-bK1q+UwoTLgbDi6UeY20FCH3MtJaoRpWV3DHd2U7Mbw=", - "output": "tar", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tar" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tar" - } - }, - "tar": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tar//:tar", - "name": "ape~1.0.0-alpha.3~_repo_rules~tar" - } - }, - "cosmos-tee": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-TJTxJe2mWPIizG4s3vwgg3wrKjew5E+1wGKRrtx+el4=", - "output": "tee", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tee" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tee" - } - }, - "tee": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tee//:tee", - "name": "ape~1.0.0-alpha.3~_repo_rules~tee" - } - }, - "cosmos-test": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-djzefI/wv2XCnNfvFpjfTIJVly06qkSAsV4BoV0gUEo=", - "output": "test", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/test" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-test" - } - }, - "test": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-test//:test", - "name": "ape~1.0.0-alpha.3~_repo_rules~test" - } - }, - "cosmos-tidy": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-20zyJkRs1n5tzbPTbXPfAt9CaVDsbpGZws8bddOY16E=", - "output": "tidy", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tidy" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tidy" - } - }, - "tidy": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tidy//:tidy", - "name": "ape~1.0.0-alpha.3~_repo_rules~tidy" - } - }, - "cosmos-timeout": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-aasJBcTgrDU0Xs4V4UkUW8Wsle1EdXnPdf0Fymw0Fpc=", - "output": "timeout", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/timeout" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-timeout" - } - }, - "timeout": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-timeout//:timeout", - "name": "ape~1.0.0-alpha.3~_repo_rules~timeout" - } - }, - "cosmos-tmux": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZbW548NXsKv7puCJc+hHvF2hpYI7MQvZc//FAH7oTUI=", - "output": "tmux", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tmux" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tmux" - } - }, - "tmux": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tmux//:tmux", - "name": "ape~1.0.0-alpha.3~_repo_rules~tmux" - } - }, - "cosmos-touch": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Qtxc3zlOZg2B3dXeUABQUcyFdjFCV6WPVQUr8DQP1qk=", - "output": "touch", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/touch" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-touch" - } - }, - "touch": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-touch//:touch", - "name": "ape~1.0.0-alpha.3~_repo_rules~touch" - } - }, - "cosmos-tr": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-1l1OkCTePV8SDxVQyoTtvK0fHCR9Hf+ebHGh5gEriyY=", - "output": "tr", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tr" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tr" - } - }, - "tr": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tr//:tr", - "name": "ape~1.0.0-alpha.3~_repo_rules~tr" - } - }, - "cosmos-tree": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-B0m9Z2PoklikdfkbU1QyFsjlFkVzUemLSGmQTC/OL5I=", - "output": "tree", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tree" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tree" - } - }, - "tree": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tree//:tree", - "name": "ape~1.0.0-alpha.3~_repo_rules~tree" - } - }, - "cosmos-true": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Cp9RvWCvc8NmfZbMhdDz38cA8YJDVRswENEggHgEoVY=", - "output": "true", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/true" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-true" - } - }, - "true": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-true//:true", - "name": "ape~1.0.0-alpha.3~_repo_rules~true" - } - }, - "cosmos-truncate": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-/u7bZBCAYeEeEeST5/9z3pmy6bgP0FAGUaUOED/Rppo=", - "output": "truncate", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/truncate" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-truncate" - } - }, - "truncate": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-truncate//:truncate", - "name": "ape~1.0.0-alpha.3~_repo_rules~truncate" - } - }, - "cosmos-tsort": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-uTgUXY/AU+WyqjwbCR5AS8O7wzN5pROWV1Jp0hmpykc=", - "output": "tsort", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tsort" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tsort" - } - }, - "tsort": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tsort//:tsort", - "name": "ape~1.0.0-alpha.3~_repo_rules~tsort" - } - }, - "cosmos-tty": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-q7ACSLuBRoj8S/6SACtld7x6LC/HbxTjGeY7vu/8ENg=", - "output": "tty", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/tty" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-tty" - } - }, - "tty": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-tty//:tty", - "name": "ape~1.0.0-alpha.3~_repo_rules~tty" - } - }, - "cosmos-ttyinfo": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-30KPzAvNZ0hGPsi+hFXWgEQhItcB1bvRNJY+cokdcTo=", - "output": "ttyinfo", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/ttyinfo" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-ttyinfo" - } - }, - "ttyinfo": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-ttyinfo//:ttyinfo", - "name": "ape~1.0.0-alpha.3~_repo_rules~ttyinfo" - } - }, - "cosmos-unbourne": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Q7/iZUHTlmCUQN6rw8cg7V+tb2A8RCDOnRfR9TZoMq4=", - "output": "unbourne", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unbourne" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-unbourne" - } - }, - "unbourne": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-unbourne//:unbourne", - "name": "ape~1.0.0-alpha.3~_repo_rules~unbourne" - } - }, - "cosmos-unexpand": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-1aCgwxoQk7SzJXBlADz3cf/V2vMMcys0MQ3fwaICx2U=", - "output": "unexpand", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unexpand" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-unexpand" - } - }, - "unexpand": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-unexpand//:unexpand", - "name": "ape~1.0.0-alpha.3~_repo_rules~unexpand" - } - }, - "cosmos-uniq": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-A6UVJI2TAChs4PaCnCbjOYK74QvhoPef+7iVhgV4urA=", - "output": "uniq", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uniq" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-uniq" - } - }, - "uniq": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-uniq//:uniq", - "name": "ape~1.0.0-alpha.3~_repo_rules~uniq" - } - }, - "cosmos-unlink": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-utJGVV1+wC3tQEdJ9kvr1c17Co2ljegM/+0ASl1WlUQ=", - "output": "unlink", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unlink" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-unlink" - } - }, - "unlink": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-unlink//:unlink", - "name": "ape~1.0.0-alpha.3~_repo_rules~unlink" - } - }, - "cosmos-unzip": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-CuORPmGI+lGcTM34owoLe6NA5O3sO2z6s/u32+52Ay8=", - "output": "unzip", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/unzip" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-unzip" - } - }, - "unzip": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-unzip//:unzip", - "name": "ape~1.0.0-alpha.3~_repo_rules~unzip" - } - }, - "cosmos-uptime": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-m/S29ntFqzWNnInIxt6M+G0bXQVRRJullJ6+Cn0t5FM=", - "output": "uptime", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/uptime" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-uptime" - } - }, - "uptime": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-uptime//:uptime", - "name": "ape~1.0.0-alpha.3~_repo_rules~uptime" - } - }, - "cosmos-users": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-i5UF16OR/uwcu/Zawzk0Qnj8ng5gKbwWcJQ075HRT/Y=", - "output": "users", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/users" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-users" - } - }, - "users": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-users//:users", - "name": "ape~1.0.0-alpha.3~_repo_rules~users" - } - }, - "cosmos-vdir": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-iXYsmmp973x1uSnX+4na5G8sHJ5K4Y9en1GX1h8w/Xc=", - "output": "vdir", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vdir" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-vdir" - } - }, - "vdir": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-vdir//:vdir", - "name": "ape~1.0.0-alpha.3~_repo_rules~vdir" - } - }, - "cosmos-verynice": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-49xc858RJTKnORI8VR/qm+rWmw8685O40dyO3xA9MX4=", - "output": "verynice", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/verynice" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-verynice" - } - }, - "verynice": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-verynice//:verynice", - "name": "ape~1.0.0-alpha.3~_repo_rules~verynice" - } - }, - "cosmos-vim": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-wf8JV2UJG15mrkruoVW5mCYRziO5+mYtoinHR/MH88o=", - "output": "vim", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/vim" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-vim" - } - }, - "vim": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-vim//:vim", - "name": "ape~1.0.0-alpha.3~_repo_rules~vim" - } - }, - "cosmos-wall": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-yPDUoIdP/jcggElRwyiHqkS89gnVDzBzkCNwJfe8E9U=", - "output": "wall", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wall" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-wall" - } - }, - "wall": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-wall//:wall", - "name": "ape~1.0.0-alpha.3~_repo_rules~wall" - } - }, - "cosmos-wc": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-0QcoEnBZYML3zxx+8F5OywXn5KlJ2put3tVTtenRivU=", - "output": "wc", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wc" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-wc" - } - }, - "wc": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-wc//:wc", - "name": "ape~1.0.0-alpha.3~_repo_rules~wc" - } - }, - "cosmos-wget": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Cc6S4q1wHliGSWDZl2WVxDz+9YEdum6tFA7PLvw/UII=", - "output": "wget", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/wget" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-wget" - } - }, - "wget": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-wget//:wget", - "name": "ape~1.0.0-alpha.3~_repo_rules~wget" - } - }, - "cosmos-who": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-f/7aVNcB5lYIhOpfxiqch8S22b+nI25TrI2C2bSKXI8=", - "output": "who", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/who" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-who" - } - }, - "who": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-who//:who", - "name": "ape~1.0.0-alpha.3~_repo_rules~who" - } - }, - "cosmos-whoami": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-71b9T2z17+0j8711Eyw1rWrrTBv39cIgqEk85KlWSXw=", - "output": "whoami", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/whoami" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-whoami" - } - }, - "whoami": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-whoami//:whoami", - "name": "ape~1.0.0-alpha.3~_repo_rules~whoami" - } - }, - "cosmos-xargs": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-bP3uyxPEzbL5QeMJCTtvQPrhpiXut+iHTTeGuOCpNJg=", - "output": "xargs", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xargs" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-xargs" - } - }, - "xargs": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-xargs//:xargs", - "name": "ape~1.0.0-alpha.3~_repo_rules~xargs" - } - }, - "cosmos-xz": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-gTBKAnJyqP88kGYtlkZcdldoFU2J6VtcQCtfXfhrJDE=", - "output": "xz", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/xz" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-xz" - } - }, - "xz": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-xz//:xz", - "name": "ape~1.0.0-alpha.3~_repo_rules~xz" - } - }, - "cosmos-yes": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-ZGiA91He1rL0kZKHXUUH8qWmaLly/3QxtKO0R8avkbA=", - "output": "yes", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/yes" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-yes" - } - }, - "yes": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-yes//:yes", - "name": "ape~1.0.0-alpha.3~_repo_rules~yes" - } - }, - "cosmos-zip": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-Pba62aWW0gpT1wJK8Aa7HWwf3foaXnEUMxkfN8pZ01E=", - "output": "zip", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zip" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-zip" - } - }, - "zip": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-zip//:zip", - "name": "ape~1.0.0-alpha.3~_repo_rules~zip" - } - }, - "cosmos-zsh": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-JKePwqxk9+6vQbRdaGA/nZg0hNBn40mE3sKY1ftzxtQ=", - "output": "zsh", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zsh" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-zsh" - } - }, - "zsh": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-zsh//:zsh", - "name": "ape~1.0.0-alpha.3~_repo_rules~zsh" - } - }, - "cosmos-zstd": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/file:repository.bzl", - "ruleClassName": "file", - "attributes": { - "executable": true, - "integrity": "sha256-NBtbg/4vD4sgHfqxK9DiUzdtJgu3+lER8GYZ8irR40E=", - "output": "zstd", - "urls": [ - "https://cosmo.zip/pub/cosmos/v/3.2.4/bin/zstd" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cosmos-zstd" - } - }, - "zstd": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cosmos-zstd//:zstd", - "name": "ape~1.0.0-alpha.3~_repo_rules~zstd" - } - }, - "cli": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "srcs": [ - "bin/*" - ], - "integrity": "sha256-ky+wwBWUS38eUFu5O3q/w7S2l7UGSJEDZAuYLmKGjc8=", - "urls": [ - "https://github.com/ahgamut/superconfigure/releases/download/z0.0.33/cli.zip" - ], - "name": "ape~1.0.0-alpha.3~_repo_rules~cli" - } - }, - "diff": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cli//:bin/diff", - "name": "ape~1.0.0-alpha.3~_repo_rules~diff" - } - }, - "diff3": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cli//:bin/diff3", - "name": "ape~1.0.0-alpha.3~_repo_rules~diff3" - } - }, - "sdiff": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cli//:bin/sdiff", - "name": "ape~1.0.0-alpha.3~_repo_rules~sdiff" - } - }, - "cmp": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cli//:bin/cmp", - "name": "ape~1.0.0-alpha.3~_repo_rules~cmp" - } - }, - "patch": { - "bzlFile": "@@ape~1.0.0-alpha.3//ape/entrypoint:repository.bzl", - "ruleClassName": "entrypoint", - "attributes": { - "binary": "@@ape~1.0.0-alpha.3~_repo_rules~cli//:bin/patch", - "name": "ape~1.0.0-alpha.3~_repo_rules~patch" - } - } - } - } - }, - "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": { - "general": { - "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local_config_apple_cc": { - "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf", - "attributes": { - "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc" - } - }, - "local_config_apple_cc_toolchains": { - "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf_toolchains", - "attributes": { - "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains" - } - } - } - } - }, - "@@bazel_features~1.9.1//private:extensions.bzl%version_extension": { - "general": { - "bzlTransitiveDigest": "vdfDkWaCEv75vG6fwHL2g0FjypmO5wJl4O23w1/Efrs=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "bazel_features_version": { - "bzlFile": "@@bazel_features~1.9.1//private:version_repo.bzl", - "ruleClassName": "version_repo", - "attributes": { - "name": "bazel_features~1.9.1~version_extension~bazel_features_version" - } - }, - "bazel_features_globals": { - "bzlFile": "@@bazel_features~1.9.1//private:globals_repo.bzl", - "ruleClassName": "globals_repo", - "attributes": { - "name": "bazel_features~1.9.1~version_extension~bazel_features_globals", - "globals": { - "RunEnvironmentInfo": "5.3.0", - "DefaultInfo": "0.0.1", - "__TestingOnly_NeverAvailable": "1000000000.0.0" - } - } - } - } - } - }, - "@@bazel_tools//tools/android:android_extensions.bzl%remote_android_tools_extensions": { - "general": { - "bzlTransitiveDigest": "iz3RFYDcsjupaT10sdSPAhA44WL3eDYkTEnYThllj1w=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "android_tools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "bazel_tools~remote_android_tools_extensions~android_tools", - "sha256": "2b661a761a735b41c41b3a78089f4fc1982626c76ddb944604ae3ff8c545d3c2", - "url": "https://mirror.bazel.build/bazel_android_tools/android_tools_pkg-0.30.0.tar" - } - }, - "android_gmaven_r8": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_jar", - "attributes": { - "name": "bazel_tools~remote_android_tools_extensions~android_gmaven_r8", - "sha256": "57a696749695a09381a87bc2f08c3a8ed06a717a5caa3ef878a3077e0d3af19d", - "url": "https://maven.google.com/com/android/tools/r8/8.1.56/r8-8.1.56.jar" - } - } - } - } - }, - "@@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/osx:xcode_configure.bzl%xcode_configure_extension": { - "general": { - "bzlTransitiveDigest": "Qh2bWTU6QW6wkrd87qrU4YeY+SG37Nvw3A0PR4Y0L2Y=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local_config_xcode": { - "bzlFile": "@@bazel_tools//tools/osx:xcode_configure.bzl", - "ruleClassName": "xcode_autoconf", - "attributes": { - "name": "bazel_tools~xcode_configure_extension~local_config_xcode", - "xcode_locator": "@bazel_tools//tools/osx:xcode_locator.m", - "remote_xcode": "" - } - } - } - } - }, - "@@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" - } - } - } - } - }, - "@@bazel_tools//tools/test:extensions.bzl%remote_coverage_tools_extension": { - "general": { - "bzlTransitiveDigest": "cizrA62cv8WUgb0cCmx5B6PRijtr/I4TAWxg/4caNGU=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "remote_coverage_tools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "bazel_tools~remote_coverage_tools_extension~remote_coverage_tools", - "sha256": "7006375f6756819b7013ca875eab70a541cf7d89142d9c511ed78ea4fefa38af", - "urls": [ - "https://mirror.bazel.build/bazel_coverage_output_generator/releases/coverage_output_generator-v2.6.zip" - ] - } - } - } - } - }, - "@@gazelle~0.37.0//:extensions.bzl%go_deps": { - "general": { - "bzlTransitiveDigest": "h5Jzo/sdBwNtdFK2Kaq9qCPyNPqE39rr4fz2yy8iZtk=", - "accumulatedFileDigests": { - "@@//:go.mod": "2d997a8be1d18238d83ac02b20b6b9a4f5c6bd69a159c04d4bbaa8427bb7e748", - "@@rules_go~0.48.0//:go.sum": "d56fdb19b21a5f12bcf625c49432371ac39c2def0f564098fbda107f7c080f40", - "@@//:go.sum": "7f43dfce1e3cd7be64ff8af525745c91d5df45eb987c1296157fa2db805a6366", - "@@gazelle~0.37.0//:go.mod": "3bdf577b31bd67ce2b7bc1c438077c421395278e79b2e95e8de7d7942d0297d7", - "@@circl~1.3.8//:go.mod": "42ae9c8ff8a29492120d5a304760cae606a876c8a4a2d6b6954379c53c272b86", - "@@circl~1.3.8//:go.sum": "becaf24170c0a60bc00032bc51b38bf363d6186aad5d41378a94c0bcdfd2a0f6", - "@@gazelle~0.37.0//:go.sum": "14df932fff1ea6aa2b9ac6ad53b8acf3d1cffe44e3375e75d1c4c9d2a86d3473", - "@@rules_go~0.48.0//:go.mod": "de22304b720f7f61350ec1c9739de6c0a1b1103fd22bfeb6e92c6c843ddc6d6e" - }, - "envVariables": {}, - "generatedRepoSpecs": { - "org_golang_x_tools_go_vcs": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_tools_go_vcs", - "importpath": "golang.org/x/tools/go/vcs", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:cOIJqWBl99H1dH5LWizPa+0ImeeJq3t3cJjaeOWUAL4=", - "replace": "", - "version": "v0.1.0-deprecated" - } - }, - "com_github_fsnotify_fsnotify": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_fsnotify_fsnotify", - "importpath": "github.com/fsnotify/fsnotify", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=", - "replace": "", - "version": "v1.7.0" - } - }, - "com_github_cyphar_filepath_securejoin": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_cyphar_filepath_securejoin", - "importpath": "github.com/cyphar/filepath-securejoin", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg=", - "replace": "", - "version": "v0.2.4" - } - }, - "org_golang_google_grpc_cmd_protoc_gen_go_grpc": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_google_grpc_cmd_protoc_gen_go_grpc", - "importpath": "google.golang.org/grpc/cmd/protoc-gen-go-grpc", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:rNBFJjBCOgVr9pWD7rs/knKL4FRTKgpZmsRfV214zcA=", - "replace": "", - "version": "v1.3.0" - } - }, - "com_github_bmatcuk_doublestar_v4": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_bmatcuk_doublestar_v4", - "importpath": "github.com/bmatcuk/doublestar/v4", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I=", - "replace": "", - "version": "v4.6.1" - } - }, - "com_github_pmezard_go_difflib": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_pmezard_go_difflib", - "importpath": "github.com/pmezard/go-difflib", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", - "replace": "", - "version": "v1.0.0" - } - }, - "com_github_mattn_go_isatty": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_mattn_go_isatty", - "importpath": "github.com/mattn/go-isatty", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=", - "replace": "", - "version": "v0.0.20" - } - }, - "com_github_davecgh_go_spew": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_davecgh_go_spew", - "importpath": "github.com/davecgh/go-spew", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", - "replace": "", - "version": "v1.1.1" - } - }, - "org_golang_x_tools": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_tools", - "importpath": "golang.org/x/tools", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:k8NLag8AGHnn+PHbl7g43CtqZAwG60vZkLqgyZgIHgQ=", - "replace": "", - "version": "v0.18.0" - } - }, - "org_golang_x_net": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_net", - "importpath": "golang.org/x/net", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c=", - "replace": "", - "version": "v0.19.0" - } - }, - "com_github_bazelbuild_buildtools": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_bazelbuild_buildtools", - "importpath": "github.com/bazelbuild/buildtools", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:VNqmvOfFzn2Hrtoni8vqgXlIQ4C2Zt22fxeZ9gOOkp0=", - "replace": "", - "version": "v0.0.0-20240313121412-66c605173954" - } - }, - "org_golang_google_genproto": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_google_genproto", - "importpath": "google.golang.org/genproto", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=", - "replace": "", - "version": "v0.0.0-20200526211855-cb27e3aa2013" - } - }, - "com_github_kevinburke_ssh_config": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_kevinburke_ssh_config", - "importpath": "github.com/kevinburke/ssh_config", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=", - "replace": "", - "version": "v1.2.0" - } - }, - "com_github_protonmail_go_crypto": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_protonmail_go_crypto", - "importpath": "github.com/ProtonMail/go-crypto", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:kkhsdkhsCvIsutKu5zLMgWtgh9YxGCNAw8Ad8hjwfYg=", - "replace": "", - "version": "v0.0.0-20230828082145-3c4c8a2d2371" - } - }, - "com_github_gogo_protobuf": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_gogo_protobuf", - "importpath": "github.com/gogo/protobuf", - "build_directives": [ - "gazelle:proto disable" - ], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=", - "replace": "", - "version": "v1.3.2" - } - }, - "com_github_stretchr_testify": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_stretchr_testify", - "importpath": "github.com/stretchr/testify", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=", - "replace": "", - "version": "v1.8.4" - } - }, - "com_github_microsoft_go_winio": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_microsoft_go_winio", - "importpath": "github.com/Microsoft/go-winio", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow=", - "replace": "", - "version": "v0.6.1" - } - }, - "com_github_golang_mock": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_golang_mock", - "importpath": "github.com/golang/mock", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:YojYx61/OLFsiv6Rw1Z96LpldJIy31o+UHmwAUMJ6/U=", - "replace": "", - "version": "v1.7.0-rc.1" - } - }, - "org_golang_x_sync": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_sync", - "importpath": "golang.org/x/sync", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ=", - "replace": "", - "version": "v0.6.0" - } - }, - "com_github_go_git_go_git_v5": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_go_git_go_git_v5", - "importpath": "github.com/go-git/go-git/v5", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4=", - "replace": "", - "version": "v5.11.0" - } - }, - "com_github_go_git_go_billy_v5": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_go_git_go_billy_v5", - "importpath": "github.com/go-git/go-billy/v5", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU=", - "replace": "", - "version": "v5.5.0" - } - }, - "cat_dario_mergo": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~cat_dario_mergo", - "importpath": "dario.cat/mergo", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk=", - "replace": "", - "version": "v1.0.0" - } - }, - "com_github_jbenet_go_context": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_jbenet_go_context", - "importpath": "github.com/jbenet/go-context", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=", - "replace": "", - "version": "v0.0.0-20150711004518-d14ea06fba99" - } - }, - "org_golang_google_grpc": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_google_grpc", - "importpath": "google.golang.org/grpc", - "build_directives": [ - "gazelle:proto disable" - ], - "build_file_generation": "on", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:pnP7OclFFFgFi4VHQDQDaoXUVauOFyktqTsqqgzFKbc=", - "replace": "", - "version": "v1.40.1" - } - }, - "com_github_jessevdk_go_flags": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_jessevdk_go_flags", - "importpath": "github.com/jessevdk/go-flags", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc=", - "replace": "", - "version": "v1.5.0" - } - }, - "com_github_pjbgf_sha1cd": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_pjbgf_sha1cd", - "importpath": "github.com/pjbgf/sha1cd", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4=", - "replace": "", - "version": "v0.3.0" - } - }, - "com_github_go_git_gcfg": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_go_git_gcfg", - "importpath": "github.com/go-git/gcfg", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI=", - "replace": "", - "version": "v1.5.1-0.20230307220236-3a3c6141e376" - } - }, - "com_github_google_go_cmp": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_google_go_cmp", - "importpath": "github.com/google/go-cmp", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=", - "replace": "", - "version": "v0.6.0" - } - }, - "in_gopkg_warnings_v0": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~in_gopkg_warnings_v0", - "importpath": "gopkg.in/warnings.v0", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=", - "replace": "", - "version": "v0.1.2" - } - }, - "org_golang_x_text": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_text", - "importpath": "golang.org/x/text", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=", - "replace": "", - "version": "v0.14.0" - } - }, - "com_github_natefinch_atomic": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_natefinch_atomic", - "importpath": "github.com/natefinch/atomic", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:ZPYKxkqQOx3KZ+RsbnP/YsgvxWQPGxjC0oBt2AhwV0A=", - "replace": "", - "version": "v1.0.1" - } - }, - "org_golang_google_protobuf": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_google_protobuf", - "importpath": "google.golang.org/protobuf", - "build_directives": [ - "gazelle:proto disable" - ], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=", - "replace": "", - "version": "v1.31.0" - } - }, - "com_github_emirpasic_gods": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_emirpasic_gods", - "importpath": "github.com/emirpasic/gods", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=", - "replace": "", - "version": "v1.18.1" - } - }, - "com_github_xanzy_ssh_agent": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_xanzy_ssh_agent", - "importpath": "github.com/xanzy/ssh-agent", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=", - "replace": "", - "version": "v0.3.3" - } - }, - "org_golang_x_mod": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_mod", - "importpath": "golang.org/x/mod", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic=", - "replace": "", - "version": "v0.16.0" - } - }, - "com_github_bwesterb_go_ristretto": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_bwesterb_go_ristretto", - "importpath": "github.com/bwesterb/go-ristretto", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:1w53tCkGhCQ5djbat3+MH0BAQ5Kfgbt56UZQ/JMzngw=", - "replace": "", - "version": "v1.2.3" - } - }, - "in_gopkg_yaml_v3": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~in_gopkg_yaml_v3", - "importpath": "gopkg.in/yaml.v3", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=", - "replace": "", - "version": "v3.0.1" - } - }, - "org_golang_x_crypto": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_crypto", - "importpath": "golang.org/x/crypto", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY=", - "replace": "", - "version": "v0.16.0" - } - }, - "com_github_sergi_go_diff": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_sergi_go_diff", - "importpath": "github.com/sergi/go-diff", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=", - "replace": "", - "version": "v1.1.0" - } - }, - "com_github_skeema_knownhosts": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_skeema_knownhosts", - "importpath": "github.com/skeema/knownhosts", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ=", - "replace": "", - "version": "v1.2.1" - } - }, - "com_github_golang_protobuf": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_golang_protobuf", - "importpath": "github.com/golang/protobuf", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=", - "replace": "", - "version": "v1.5.3" - } - }, - "bazel_gazelle_go_repository_config": { - "bzlFile": "@@gazelle~0.37.0//internal/bzlmod:go_deps.bzl", - "ruleClassName": "_go_repository_config", - "attributes": { - "name": "gazelle~0.37.0~go_deps~bazel_gazelle_go_repository_config", - "importpaths": { - "com_github_bmatcuk_doublestar_v4": "github.com/bmatcuk/doublestar/v4", - "com_github_go_git_go_billy_v5": "github.com/go-git/go-billy/v5", - "com_github_go_git_go_git_v5": "github.com/go-git/go-git/v5", - "com_github_jessevdk_go_flags": "github.com/jessevdk/go-flags", - "com_github_kevinburke_ssh_config": "github.com/kevinburke/ssh_config", - "com_github_mattn_go_isatty": "github.com/mattn/go-isatty", - "com_github_stretchr_testify": "github.com/stretchr/testify", - "com_github_natefinch_atomic": "github.com/natefinch/atomic", - "cat_dario_mergo": "dario.cat/mergo", - "com_github_microsoft_go_winio": "github.com/Microsoft/go-winio", - "com_github_protonmail_go_crypto": "github.com/ProtonMail/go-crypto", - "@circl~1.3.8": "github.com/cloudflare/circl", - "com_github_cyphar_filepath_securejoin": "github.com/cyphar/filepath-securejoin", - "com_github_davecgh_go_spew": "github.com/davecgh/go-spew", - "com_github_emirpasic_gods": "github.com/emirpasic/gods", - "com_github_go_git_gcfg": "github.com/go-git/gcfg", - "com_github_golang_groupcache": "github.com/golang/groupcache", - "com_github_jbenet_go_context": "github.com/jbenet/go-context", - "com_github_pjbgf_sha1cd": "github.com/pjbgf/sha1cd", - "com_github_pmezard_go_difflib": "github.com/pmezard/go-difflib", - "com_github_sergi_go_diff": "github.com/sergi/go-diff", - "com_github_skeema_knownhosts": "github.com/skeema/knownhosts", - "com_github_xanzy_ssh_agent": "github.com/xanzy/ssh-agent", - "org_golang_x_crypto": "golang.org/x/crypto", - "org_golang_x_mod": "golang.org/x/mod", - "org_golang_x_net": "golang.org/x/net", - "org_golang_x_sys": "golang.org/x/sys", - "org_golang_x_tools": "golang.org/x/tools", - "in_gopkg_warnings_v0": "gopkg.in/warnings.v0", - "in_gopkg_yaml_v3": "gopkg.in/yaml.v3", - "com_github_gogo_protobuf": "github.com/gogo/protobuf", - "com_github_golang_mock": "github.com/golang/mock", - "com_github_golang_protobuf": "github.com/golang/protobuf", - "org_golang_google_genproto": "google.golang.org/genproto", - "org_golang_google_grpc": "google.golang.org/grpc", - "org_golang_google_grpc_cmd_protoc_gen_go_grpc": "google.golang.org/grpc/cmd/protoc-gen-go-grpc", - "org_golang_google_protobuf": "google.golang.org/protobuf", - "org_golang_x_text": "golang.org/x/text", - "com_github_bazelbuild_buildtools": "github.com/bazelbuild/buildtools", - "com_github_fsnotify_fsnotify": "github.com/fsnotify/fsnotify", - "com_github_google_go_cmp": "github.com/google/go-cmp", - "org_golang_x_sync": "golang.org/x/sync", - "org_golang_x_tools_go_vcs": "golang.org/x/tools/go/vcs", - "com_github_bwesterb_go_ristretto": "github.com/bwesterb/go-ristretto", - "@rules_go~0.48.0": "github.com/bazelbuild/rules_go", - "@gazelle~0.37.0": "github.com/bazelbuild/bazel-gazelle" - }, - "module_names": { - "@rules_go~0.48.0": "rules_go", - "@gazelle~0.37.0": "gazelle", - "@circl~1.3.8": "circl" - }, - "build_naming_conventions": {}, - "go_env": {}, - "dep_files": [ - "go.mod" - ] - } - }, - "org_golang_x_sys": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~org_golang_x_sys", - "importpath": "golang.org/x/sys", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=", - "replace": "", - "version": "v0.18.0" - } - }, - "com_github_golang_groupcache": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository.bzl", - "ruleClassName": "go_repository", - "attributes": { - "name": "gazelle~0.37.0~go_deps~com_github_golang_groupcache", - "importpath": "github.com/golang/groupcache", - "build_directives": [], - "build_file_generation": "auto", - "build_extra_args": [], - "patches": [], - "patch_args": [], - "debug_mode": false, - "sum": "h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=", - "replace": "", - "version": "v0.0.0-20210331224755-41bb18bfe9da" - } - } - }, - "moduleExtensionMetadata": { - "explicitRootModuleDirectDeps": [ - "com_github_bmatcuk_doublestar_v4", - "com_github_go_git_go_billy_v5", - "com_github_go_git_go_git_v5", - "com_github_jessevdk_go_flags", - "com_github_kevinburke_ssh_config", - "com_github_mattn_go_isatty", - "com_github_stretchr_testify", - "com_github_natefinch_atomic" - ], - "explicitRootModuleDirectDevDeps": [], - "useAllRepos": "NO" - } - } - }, - "@@gazelle~0.37.0//internal/bzlmod:non_module_deps.bzl%non_module_deps": { - "general": { - "bzlTransitiveDigest": "dHRpWd5DFImjxhENwOQM+TwKQES1AKlw4UNEVIEGps0=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "bazel_gazelle_is_bazel_module": { - "bzlFile": "@@gazelle~0.37.0//internal:is_bazel_module.bzl", - "ruleClassName": "is_bazel_module", - "attributes": { - "name": "gazelle~0.37.0~non_module_deps~bazel_gazelle_is_bazel_module", - "is_bazel_module": true - } - }, - "bazel_gazelle_go_repository_tools": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository_tools.bzl", - "ruleClassName": "go_repository_tools", - "attributes": { - "name": "gazelle~0.37.0~non_module_deps~bazel_gazelle_go_repository_tools", - "go_cache": "@@gazelle~0.37.0~non_module_deps~bazel_gazelle_go_repository_cache//:go.env" - } - }, - "bazel_gazelle_go_repository_cache": { - "bzlFile": "@@gazelle~0.37.0//internal:go_repository_cache.bzl", - "ruleClassName": "go_repository_cache", - "attributes": { - "name": "gazelle~0.37.0~non_module_deps~bazel_gazelle_go_repository_cache", - "go_sdk_name": "@rules_go~0.48.0~go_sdk~go_default_sdk", - "go_env": {} - } - } - }, - "moduleExtensionMetadata": { - "useAllRepos": "NO" - } - } - }, - "@@hermetic_cc_toolchain~3.0.0//toolchain:ext.bzl%toolchains": { - "general": { - "bzlTransitiveDigest": "JixdmGHaVY7yPcX2VbGo/0L9VDsp0wEDZUnC1LL7qx8=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "zig_sdk": { - "bzlFile": "@@hermetic_cc_toolchain~3.0.0//toolchain:defs.bzl", - "ruleClassName": "zig_repository", - "attributes": { - "name": "hermetic_cc_toolchain~3.0.0~toolchains~zig_sdk", - "version": "0.12.0-dev.2631+3069669bc", - "url_formats": [ - "https://mirror.bazel.build/ziglang.org/builds/zig-{host_platform}-{version}.{_ext}", - "https://ziglang.org/builds/zig-{host_platform}-{version}.{_ext}" - ], - "host_platform_sha256": { - "linux-aarch64": "ea6bd76d5de66a39a2c36286fe96a02c37ae7956924bd9e45879facd3a76ebab", - "linux-x86_64": "fcc7d3e6b69c129d755653b3a7b4efc49fe2f7cee535dadc99999be7416977e7", - "macos-aarch64": "23ddbde196c4a62de96bf671306bade8454ee776f0d675cb5fc8bfd38f63a22e", - "macos-x86_64": "64268cb562d2a89c86c51f3c23d82a27690741e77fd980962a1b282b98adc5a4", - "windows-x86_64": "5216ceda34a7133117bf54fb857d5d1cb47f0f3b834172ee9e707621e2b9d2b3" - }, - "host_platform_ext": { - "linux-aarch64": "tar.xz", - "linux-x86_64": "tar.xz", - "macos-aarch64": "tar.xz", - "macos-x86_64": "tar.xz", - "windows-x86_64": "zip" - } - } - } - } - } - }, - "@@rules_coreutils~1.0.0-alpha.8//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "Y6Ql6Fc54/lZohdaKTW25feZ8locHF8d8fo/tu9MIUs=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "coreutils-arm64-linux-gnu": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils-arm64-linux-gnu" - } - }, - "coreutils-amd64-linux-gnu": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils-amd64-linux-gnu" - } - }, - "coreutils-amd64-windows-msvc": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils-amd64-windows-msvc" - } - }, - "coreutils-arm64-macos-darwin": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils-arm64-macos-darwin" - } - }, - "coreutils-amd64-macos-darwin": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/archive:repository.bzl", - "ruleClassName": "archive", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils-amd64-macos-darwin" - } - }, - "coreutils": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/select:repository.bzl", - "ruleClassName": "select", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils" - } - }, - "busybox-arm64-linux": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/deb:repository.bzl", - "ruleClassName": "deb", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~busybox-arm64-linux" - } - }, - "busybox-amd64-linux": { - "bzlFile": "@@download_utils~1.0.0-beta.1//download/deb:repository.bzl", - "ruleClassName": "deb", - "attributes": { - "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": "rules_coreutils~1.0.0-alpha.8~_repo_rules~busybox-amd64-linux" - } - }, - "resolved-busybox": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "busybox", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/busybox:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-busybox" - } - }, - "which-busybox": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "busybox", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-busybox" - } - }, - "resolved-coreutils": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "coreutils", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/coreutils:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-coreutils" - } - }, - "which-coreutils": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "coreutils", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-coreutils" - } - }, - "resolved-arch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "arch", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/arch:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-arch" - } - }, - "which-arch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "arch", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-arch" - } - }, - "resolved-base64": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "base64", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/base64:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-base64" - } - }, - "which-base64": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "base64", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-base64" - } - }, - "resolved-basename": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "basename", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/basename:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-basename" - } - }, - "which-basename": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "basename", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-basename" - } - }, - "resolved-cat": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "cat", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/cat:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-cat" - } - }, - "which-cat": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "cat", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-cat" - } - }, - "resolved-chmod": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "chmod", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/chmod:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-chmod" - } - }, - "which-chmod": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "chmod", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-chmod" - } - }, - "resolved-chown": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "chown", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/chown:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-chown" - } - }, - "which-chown": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "chown", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-chown" - } - }, - "resolved-cp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "cp", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/cp:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-cp" - } - }, - "which-cp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "cp", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-cp" - } - }, - "resolved-cut": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "cut", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/cut:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-cut" - } - }, - "which-cut": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "cut", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-cut" - } - }, - "resolved-date": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "date", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/date:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-date" - } - }, - "which-date": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "date", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-date" - } - }, - "resolved-dd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "dd", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/dd:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-dd" - } - }, - "which-dd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "dd", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-dd" - } - }, - "resolved-df": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "df", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/df:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-df" - } - }, - "which-df": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "df", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-df" - } - }, - "resolved-dirname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "dirname", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/dirname:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-dirname" - } - }, - "which-dirname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "dirname", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-dirname" - } - }, - "resolved-du": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "du", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/du:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-du" - } - }, - "which-du": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "du", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-du" - } - }, - "resolved-echo": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "echo", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/echo:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-echo" - } - }, - "which-echo": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "echo", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-echo" - } - }, - "resolved-env": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "env", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/env:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-env" - } - }, - "which-env": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "env", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-env" - } - }, - "resolved-expand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "expand", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/expand:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-expand" - } - }, - "which-expand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "expand", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-expand" - } - }, - "resolved-expr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "expr", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/expr:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-expr" - } - }, - "which-expr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "expr", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-expr" - } - }, - "resolved-factor": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "factor", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/factor:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-factor" - } - }, - "which-factor": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "factor", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-factor" - } - }, - "resolved-false": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "false", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/false:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-false" - } - }, - "which-false": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "false", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-false" - } - }, - "resolved-fold": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "fold", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/fold:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-fold" - } - }, - "which-fold": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "fold", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-fold" - } - }, - "resolved-head": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "head", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/head:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-head" - } - }, - "which-head": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "head", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-head" - } - }, - "resolved-hostname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "hostname", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/hostname:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-hostname" - } - }, - "which-hostname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "hostname", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-hostname" - } - }, - "resolved-install": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "install", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/install:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-install" - } - }, - "which-install": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "install", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-install" - } - }, - "resolved-link": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "link", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/link:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-link" - } - }, - "which-link": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "link", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-link" - } - }, - "resolved-ln": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "ln", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/ln:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-ln" - } - }, - "which-ln": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "ln", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-ln" - } - }, - "resolved-ls": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "ls", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/ls:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-ls" - } - }, - "which-ls": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "ls", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-ls" - } - }, - "resolved-md5sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "md5sum", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/md5sum:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-md5sum" - } - }, - "which-md5sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "md5sum", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-md5sum" - } - }, - "resolved-mkdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "mkdir", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/mkdir:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-mkdir" - } - }, - "which-mkdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "mkdir", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-mkdir" - } - }, - "resolved-mktemp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "mktemp", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/mktemp:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-mktemp" - } - }, - "which-mktemp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "mktemp", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-mktemp" - } - }, - "resolved-more": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "more", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/more:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-more" - } - }, - "which-more": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "more", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-more" - } - }, - "resolved-mv": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "mv", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/mv:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-mv" - } - }, - "which-mv": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "mv", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-mv" - } - }, - "resolved-nl": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "nl", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/nl:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-nl" - } - }, - "which-nl": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "nl", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-nl" - } - }, - "resolved-nproc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "nproc", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/nproc:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-nproc" - } - }, - "which-nproc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "nproc", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-nproc" - } - }, - "resolved-od": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "od", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/od:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-od" - } - }, - "which-od": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "od", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-od" - } - }, - "resolved-paste": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "paste", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/paste:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-paste" - } - }, - "which-paste": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "paste", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-paste" - } - }, - "resolved-printf": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "printf", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/printf:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-printf" - } - }, - "which-printf": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "printf", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-printf" - } - }, - "resolved-pwd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "pwd", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/pwd:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-pwd" - } - }, - "which-pwd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "pwd", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-pwd" - } - }, - "resolved-readlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "readlink", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/readlink:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-readlink" - } - }, - "which-readlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "readlink", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-readlink" - } - }, - "resolved-realpath": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "realpath", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/realpath:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-realpath" - } - }, - "which-realpath": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "realpath", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-realpath" - } - }, - "resolved-rm": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "rm", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/rm:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-rm" - } - }, - "which-rm": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "rm", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-rm" - } - }, - "resolved-rmdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "rmdir", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/rmdir:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-rmdir" - } - }, - "which-rmdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "rmdir", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-rmdir" - } - }, - "resolved-seq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "seq", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/seq:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-seq" - } - }, - "which-seq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "seq", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-seq" - } - }, - "resolved-sha1sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sha1sum", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sha1sum:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sha1sum" - } - }, - "which-sha1sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sha1sum", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sha1sum" - } - }, - "resolved-sha256sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sha256sum", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sha256sum:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sha256sum" - } - }, - "which-sha256sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sha256sum", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sha256sum" - } - }, - "resolved-sha3sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sha3sum", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sha3sum:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sha3sum" - } - }, - "which-sha3sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sha3sum", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sha3sum" - } - }, - "resolved-sha512sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sha512sum", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sha512sum:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sha512sum" - } - }, - "which-sha512sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sha512sum", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sha512sum" - } - }, - "resolved-shred": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "shred", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/shred:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-shred" - } - }, - "which-shred": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "shred", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-shred" - } - }, - "resolved-shuf": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "shuf", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/shuf:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-shuf" - } - }, - "which-shuf": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "shuf", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-shuf" - } - }, - "resolved-sleep": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sleep", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sleep:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sleep" - } - }, - "which-sleep": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sleep", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sleep" - } - }, - "resolved-sort": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sort", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sort:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sort" - } - }, - "which-sort": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sort", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sort" - } - }, - "resolved-sync": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "sync", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/sync:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-sync" - } - }, - "which-sync": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "sync", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-sync" - } - }, - "resolved-tac": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "tac", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/tac:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-tac" - } - }, - "which-tac": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "tac", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-tac" - } - }, - "resolved-tail": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "tail", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/tail:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-tail" - } - }, - "which-tail": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "tail", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-tail" - } - }, - "resolved-tee": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "tee", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/tee:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-tee" - } - }, - "which-tee": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "tee", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-tee" - } - }, - "resolved-test": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "test", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/test:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-test" - } - }, - "which-test": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "test", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-test" - } - }, - "resolved-touch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "touch", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/touch:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-touch" - } - }, - "which-touch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "touch", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-touch" - } - }, - "resolved-tr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "tr", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/tr:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-tr" - } - }, - "which-tr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "tr", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-tr" - } - }, - "resolved-true": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "true", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/true:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-true" - } - }, - "which-true": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "true", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-true" - } - }, - "resolved-truncate": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "truncate", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/truncate:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-truncate" - } - }, - "which-truncate": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "truncate", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-truncate" - } - }, - "resolved-uname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "uname", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/uname:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-uname" - } - }, - "which-uname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "uname", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-uname" - } - }, - "resolved-unexpand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "unexpand", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/unexpand:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-unexpand" - } - }, - "which-unexpand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "unexpand", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-unexpand" - } - }, - "resolved-uniq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "uniq", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/uniq:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-uniq" - } - }, - "which-uniq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "uniq", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-uniq" - } - }, - "resolved-unlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "unlink", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/unlink:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-unlink" - } - }, - "which-unlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "unlink", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-unlink" - } - }, - "resolved-wc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "wc", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/wc:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-wc" - } - }, - "which-wc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "wc", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-wc" - } - }, - "resolved-whoami": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "whoami", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/whoami:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-whoami" - } - }, - "which-whoami": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "whoami", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-whoami" - } - }, - "resolved-yes": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/resolved:repository.bzl", - "ruleClassName": "resolved", - "attributes": { - "basename": "yes", - "toolchain_type": "@@rules_coreutils~1.0.0-alpha.8//coreutils/toolchain/yes:type", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~resolved-yes" - } - }, - "which-yes": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/which:repository.bzl", - "ruleClassName": "which", - "attributes": { - "basename": "yes", - "name": "rules_coreutils~1.0.0-alpha.8~_repo_rules~which-yes" - } - } - } - } - }, - "@@rules_go~0.48.0//go:extensions.bzl%go_sdk": { - "os:linux,arch:amd64": { - "bzlTransitiveDigest": "zGsoxZCXY4DznxEDMHnjg64P7D8j33NGSBszwNtGaKE=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "io_bazel_rules_nogo": { - "bzlFile": "@@rules_go~0.48.0//go/private:nogo.bzl", - "ruleClassName": "go_register_nogo", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~io_bazel_rules_nogo", - "nogo": "@io_bazel_rules_go//:default_nogo", - "includes": [ - "'@@//:__subpackages__'" - ], - "excludes": [] - } - }, - "rules_go__download_0_windows_arm64": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~rules_go__download_0_windows_arm64", - "goos": "windows", - "goarch": "arm64", - "sdks": {}, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8" - } - }, - "rules_go__download_0_linux_arm64": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~rules_go__download_0_linux_arm64", - "goos": "linux", - "goarch": "arm64", - "sdks": {}, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8" - } - }, - "go_default_sdk": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~go_default_sdk", - "goos": "", - "goarch": "", - "sdks": {}, - "experiments": [], - "patches": [], - "patch_strip": 0, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8", - "strip_prefix": "go" - } - }, - "rules_go__download_0_darwin_arm64": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~rules_go__download_0_darwin_arm64", - "goos": "darwin", - "goarch": "arm64", - "sdks": {}, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8" - } - }, - "go_host_compatible_sdk_label": { - "bzlFile": "@@rules_go~0.48.0//go/private:extensions.bzl", - "ruleClassName": "host_compatible_toolchain", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~go_host_compatible_sdk_label", - "toolchain": "@go_default_sdk//:ROOT" - } - }, - "rules_go__download_0_darwin_amd64": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~rules_go__download_0_darwin_amd64", - "goos": "darwin", - "goarch": "amd64", - "sdks": {}, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8" - } - }, - "go_toolchains": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_multiple_toolchains", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~go_toolchains", - "prefixes": [ - "_0000_go_default_sdk_", - "_0001_rules_go__download_0_darwin_amd64_", - "_0002_rules_go__download_0_darwin_arm64_", - "_0003_rules_go__download_0_linux_arm64_", - "_0004_rules_go__download_0_windows_amd64_", - "_0005_rules_go__download_0_windows_arm64_" - ], - "geese": [ - "", - "darwin", - "darwin", - "linux", - "windows", - "windows" - ], - "goarchs": [ - "", - "amd64", - "arm64", - "arm64", - "amd64", - "arm64" - ], - "sdk_repos": [ - "go_default_sdk", - "rules_go__download_0_darwin_amd64", - "rules_go__download_0_darwin_arm64", - "rules_go__download_0_linux_arm64", - "rules_go__download_0_windows_amd64", - "rules_go__download_0_windows_arm64" - ], - "sdk_types": [ - "remote", - "remote", - "remote", - "remote", - "remote", - "remote" - ], - "sdk_versions": [ - "1.21.8", - "1.21.8", - "1.21.8", - "1.21.8", - "1.21.8", - "1.21.8" - ] - } - }, - "rules_go__download_0_windows_amd64": { - "bzlFile": "@@rules_go~0.48.0//go/private:sdk.bzl", - "ruleClassName": "go_download_sdk_rule", - "attributes": { - "name": "rules_go~0.48.0~go_sdk~rules_go__download_0_windows_amd64", - "goos": "windows", - "goarch": "amd64", - "sdks": {}, - "urls": [ - "https://dl.google.com/go/{}" - ], - "version": "1.21.8" - } - } - } - } - }, - "@@rules_java~7.1.0//java:extensions.bzl%toolchains": { - "general": { - "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "remotejdk21_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_s390x_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" - } - }, - "remotejdk21_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk21_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz" - ] - } - }, - "remotejdk17_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" - ] - } - }, - "remote_java_tools_windows": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows", - "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip" - ] - } - }, - "remotejdk11_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" - ] - } - }, - "remotejdk11_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk17_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" - ] - } - }, - "remotejdk11_linux_s390x_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" - } - }, - "remotejdk11_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" - ] - } - }, - "remotejdk11_win_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", - "strip_prefix": "jdk-11.0.13+8", - "urls": [ - "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" - ] - } - }, - "remotejdk17_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" - ] - } - }, - "remotejdk21_macos": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz" - ] - } - }, - "remotejdk21_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" - } - }, - "remotejdk17_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk17_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" - ] - } - }, - "remotejdk11_macos_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_ppc64le_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" - } - }, - "remotejdk21_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz" - ] - } - }, - "remote_java_tools_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux", - "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip" - ] - } - }, - "remotejdk21_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_win", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip" - ] - } - }, - "remotejdk21_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", - "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835", - "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk11_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_s390x": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", - "strip_prefix": "jdk-11.0.15+10", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", - "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" - ] - } - }, - "remotejdk17_linux_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" - ] - } - }, - "remotejdk17_win_arm64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" - } - }, - "remotejdk11_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" - ] - } - }, - "remotejdk11_macos_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" - } - }, - "remotejdk17_linux_ppc64le_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" - } - }, - "remotejdk17_win_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", - "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", - "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" - ] - } - }, - "remote_java_tools_darwin_arm64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64", - "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip" - ] - } - }, - "remotejdk17_linux_ppc64le": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", - "strip_prefix": "jdk-17.0.8.1+1", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", - "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" - ] - } - }, - "remotejdk21_linux_aarch64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" - } - }, - "remotejdk11_win_arm64_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" - } - }, - "local_jdk": { - "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl", - "ruleClassName": "_local_java_repository_rule", - "attributes": { - "name": "rules_java~7.1.0~toolchains~local_jdk", - "java_home": "", - "version": "", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" - } - }, - "remote_java_tools_darwin_x86_64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64", - "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip" - ] - } - }, - "remote_java_tools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remote_java_tools", - "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14", - "urls": [ - "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip", - "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip" - ] - } - }, - "remotejdk17_linux_s390x": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", - "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", - "strip_prefix": "jdk-17.0.8.1+1", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", - "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" - ] - } - }, - "remotejdk17_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" - } - }, - "remotejdk11_linux_ppc64le": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", - "strip_prefix": "jdk-11.0.15+10", - "urls": [ - "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", - "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" - ] - } - }, - "remotejdk11_macos_aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64", - "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", - "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", - "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", - "urls": [ - "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", - "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" - ] - } - }, - "remotejdk21_win_toolchain_config_repo": { - "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl", - "ruleClassName": "_toolchain_config", - "attributes": { - "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo", - "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" - } - } - } - } - }, - "@@rules_python~0.4.0//bzlmod:extensions.bzl%pip_install": { - "general": { - "bzlTransitiveDigest": "rTru6D/C8vlaQDk4HOKyx4U/l6PCnj3Aq/gLraAqHgQ=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "pypi__pkginfo": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__pkginfo", - "url": "https://files.pythonhosted.org/packages/77/83/1ef010f7c4563e218854809c0dff9548de65ebec930921dedf6ee5981f27/pkginfo-1.7.1-py2.py3-none-any.whl", - "sha256": "37ecd857b47e5f55949c41ed061eb51a0bee97a87c969219d144c0e023982779", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - }, - "pypi__wheel": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__wheel", - "url": "https://files.pythonhosted.org/packages/65/63/39d04c74222770ed1589c0eaba06c05891801219272420b40311cd60c880/wheel-0.36.2-py2.py3-none-any.whl", - "sha256": "78b5b185f0e5763c26ca1e324373aadd49182ca90e825f7853f4b2509215dc0e", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - }, - "pypi__click": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__click", - "url": "https://files.pythonhosted.org/packages/76/0a/b6c5f311e32aeb3b406e03c079ade51e905ea630fc19d1262a46249c1c86/click-8.0.1-py3-none-any.whl", - "sha256": "fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - }, - "pypi__pip": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__pip", - "url": "https://files.pythonhosted.org/packages/47/ca/f0d790b6e18b3a6f3bd5e80c2ee4edbb5807286c21cdd0862ca933f751dd/pip-21.1.3-py3-none-any.whl", - "sha256": "78cb760711fedc073246543801c84dc5377affead832e103ad0211f99303a204", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - }, - "pypi__pip_tools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__pip_tools", - "url": "https://files.pythonhosted.org/packages/6d/16/75d65bdccd48bb59a08e2bf167b01d8532f65604270d0a292f0f16b7b022/pip_tools-5.5.0-py2.py3-none-any.whl", - "sha256": "10841c1e56c234d610d0466447685b9ea4ee4a2c274f858c0ef3c33d9bd0d985", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - }, - "pypi__setuptools": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "name": "rules_python~0.4.0~pip_install~pypi__setuptools", - "url": "https://files.pythonhosted.org/packages/a2/e1/902fbc2f61ad6243cd3d57ffa195a9eb123021ec912ec5d811acf54a39f8/setuptools-57.1.0-py3-none-any.whl", - "sha256": "ddae4c1b9220daf1e32ba9d4e3714df6019c5b583755559be84ff8199f7e1fe3", - "type": "zip", - "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\"**/*.py\", \"**/* *\", \"BUILD\", \"WORKSPACE\"]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" - } - } - } - } - }, - "@@toolchain_utils~1.0.0-beta.4//:MODULE.bazel%_repo_rules": { - "general": { - "bzlTransitiveDigest": "N8Ehl02dLIrmCn7Ff5iLyKwfbBa0ZnVCw5quAS8d+Yw=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "local": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/local/triplet:repository.bzl", - "ruleClassName": "triplet", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~_repo_rules~local" - } - }, - "launcher": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/launcher:repository.bzl", - "ruleClassName": "launcher", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~_repo_rules~launcher" - } - } - } - } - }, - "@@toolchain_utils~1.0.0-beta.4//toolchain/export:defs.bzl%toolchain_export": { - "general": { - "bzlTransitiveDigest": "n2fd+/jiAv/nvvi2WUR+VQxI3aTZGNuhuX/NuFhw5fM=", - "accumulatedFileDigests": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "ape-pledge": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pledge", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pledge//:pledge" - } - }, - "ape-basenc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-basenc", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~basenc//:basenc" - } - }, - "ape-pwd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pwd", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pwd//:pwd" - } - }, - "ape-xargs": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-xargs", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~xargs//:xargs" - } - }, - "ape-md5sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-md5sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~md5sum//:md5sum" - } - }, - "ape-cut": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cut", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~cut//:cut" - } - }, - "ape-date": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-date", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~date//:date" - } - }, - "ape-nl": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nl", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nl//:nl" - } - }, - "ape-expand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-expand", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~expand//:expand" - } - }, - "ape-ttyinfo": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ttyinfo", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ttyinfo//:ttyinfo" - } - }, - "ape-verynice": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-verynice", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~verynice//:verynice" - } - }, - "ape-cmp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cmp", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~cmp//:cmp" - } - }, - "ape-dirname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-dirname", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~dirname//:dirname" - } - }, - "ape-sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sum//:sum" - } - }, - "ape-unexpand": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-unexpand", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~unexpand//:unexpand" - } - }, - "ape-sdiff": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sdiff", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sdiff//:sdiff" - } - }, - "ape-pigz": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pigz", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pigz//:pigz" - } - }, - "ape-nano": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nano", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nano//:nano" - } - }, - "ape-zsh": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-zsh", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~zsh//:zsh" - } - }, - "ape-datasette": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-datasette", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~datasette//:datasette" - } - }, - "ape-sha384sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sha384sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sha384sum//:sha384sum" - } - }, - "ape-dircolors": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-dircolors", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~dircolors//:dircolors" - } - }, - "ape-rsync": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-rsync", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~rsync//:rsync" - } - }, - "ape-sed": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sed", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sed//:sed" - } - }, - "ape-sha512sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sha512sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sha512sum//:sha512sum" - } - }, - "ape-nproc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nproc", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nproc//:nproc" - } - }, - "ape-find": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-find", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~find//:find" - } - }, - "ape-pinky": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pinky", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pinky//:pinky" - } - }, - "ape-mktemp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-mktemp", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~mktemp//:mktemp" - } - }, - "ape-bash": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-bash", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~bash//:bash" - } - }, - "ape-mkfifo": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-mkfifo", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~mkfifo//:mkfifo" - } - }, - "ape-tmux": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tmux", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tmux//:tmux" - } - }, - "ape-users": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-users", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~users//:users" - } - }, - "ape-head": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-head", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~head//:head" - } - }, - "ape-seq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-seq", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~seq//:seq" - } - }, - "diff": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~diff", - "target": "@@toolchain_utils~1.0.0-beta.4~toolchain_export~ape-diff//:ape-diff" - } - }, - "ape-printenv": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-printenv", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~printenv//:printenv" - } - }, - "ape-lz4": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-lz4", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~lz4//:lz4" - } - }, - "ape-sqlite3": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sqlite3", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sqlite3//:sqlite3" - } - }, - "ape-od": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-od", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~od//:od" - } - }, - "ape-tsort": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tsort", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tsort//:tsort" - } - }, - "ape-chcon": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-chcon", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~chcon//:chcon" - } - }, - "ape-shred": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-shred", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~shred//:shred" - } - }, - "ape-tidy": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tidy", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tidy//:tidy" - } - }, - "ape-wall": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-wall", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~wall//:wall" - } - }, - "ape-split": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-split", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~split//:split" - } - }, - "ape-berry": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-berry", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~berry//:berry" - } - }, - "ape-groups": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-groups", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~groups//:groups" - } - }, - "ape-base64": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-base64", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~base64//:base64" - } - }, - "ape-grep": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-grep", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~grep//:grep" - } - }, - "ape-wc": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-wc", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~wc//:wc" - } - }, - "ape-chown": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-chown", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~chown//:chown" - } - }, - "ape-ctags": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ctags", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ctags//:ctags" - } - }, - "ape-locate": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-locate", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~locate//:locate" - } - }, - "ape-ls": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ls", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ls//:ls" - } - }, - "ape-factor": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-factor", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~factor//:factor" - } - }, - "ape-life": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-life", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~life//:life" - } - }, - "ape-expr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-expr", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~expr//:expr" - } - }, - "ape-link": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-link", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~link//:link" - } - }, - "ape-ninja": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ninja", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ninja//:ninja" - } - }, - "ape-qjs": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-qjs", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~qjs//:qjs" - } - }, - "cmp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~cmp", - "target": "@@toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cmp//:ape-cmp" - } - }, - "ape-df": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-df", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~df//:df" - } - }, - "ape-ln": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ln", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ln//:ln" - } - }, - "ape-b2sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-b2sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~b2sum//:b2sum" - } - }, - "ape-tr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tr", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tr//:tr" - } - }, - "ape-unlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-unlink", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~unlink//:unlink" - } - }, - "ape-diff": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-diff", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~diff//:diff" - } - }, - "ape-unbourne": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-unbourne", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~unbourne//:unbourne" - } - }, - "ape-dir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-dir", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~dir//:dir" - } - }, - "ape-fmt": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-fmt", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~fmt//:fmt" - } - }, - "ape-fold": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-fold", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~fold//:fold" - } - }, - "ape-make": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-make", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~make//:make" - } - }, - "ape-mktemper": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-mktemper", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~mktemper//:mktemper" - } - }, - "ape-base32": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-base32", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~base32//:base32" - } - }, - "ape-chgrp": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-chgrp", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~chgrp//:chgrp" - } - }, - "ape-tac": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tac", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tac//:tac" - } - }, - "ape-touch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-touch", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~touch//:touch" - } - }, - "ape-python": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-python", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~python//:python" - } - }, - "ape-uptime": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-uptime", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~uptime//:uptime" - } - }, - "ape-clang-format": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-clang-format", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~clang-format//:clang-format" - } - }, - "ape-comm": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-comm", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~comm//:comm" - } - }, - "ape-tar": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tar", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tar//:tar" - } - }, - "ape-false": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-false", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~false//:false" - } - }, - "ape-rmdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-rmdir", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~rmdir//:rmdir" - } - }, - "ape-paste": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-paste", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~paste//:paste" - } - }, - "ape-du": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-du", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~du//:du" - } - }, - "ape-links": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-links", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~links//:links" - } - }, - "ape-nohup": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nohup", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nohup//:nohup" - } - }, - "sdiff": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~sdiff", - "target": "@@toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sdiff//:ape-sdiff" - } - }, - "diff3": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~diff3", - "target": "@@toolchain_utils~1.0.0-beta.4~toolchain_export~ape-diff3//:ape-diff3" - } - }, - "ape-basename": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-basename", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~basename//:basename" - } - }, - "ape-sha256sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sha256sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sha256sum//:sha256sum" - } - }, - "ape-greenbean": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-greenbean", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~greenbean//:greenbean" - } - }, - "ape-who": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-who", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~who//:who" - } - }, - "ape-curl": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-curl", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~curl//:curl" - } - }, - "ape-join": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-join", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~join//:join" - } - }, - "ape-printimage": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-printimage", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~printimage//:printimage" - } - }, - "ape-diff3": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-diff3", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~diff3//:diff3" - } - }, - "ape-pathchk": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pathchk", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pathchk//:pathchk" - } - }, - "ape-script": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-script", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~script//:script" - } - }, - "ape-cat": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cat", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~cat//:cat" - } - }, - "ape-emacs": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-emacs", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~emacs//:emacs" - } - }, - "ape-csplit": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-csplit", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~csplit//:csplit" - } - }, - "ape-kill": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-kill", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~kill//:kill" - } - }, - "ape-emacsclient": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-emacsclient", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~emacsclient//:emacsclient" - } - }, - "ape-nice": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nice", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nice//:nice" - } - }, - "ape-timeout": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-timeout", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~timeout//:timeout" - } - }, - "ape-chroot": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-chroot", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~chroot//:chroot" - } - }, - "ape-mknod": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-mknod", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~mknod//:mknod" - } - }, - "ape-sha224sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sha224sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sha224sum//:sha224sum" - } - }, - "ape-yes": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-yes", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~yes//:yes" - } - }, - "ape-gmake": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-gmake", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~gmake//:gmake" - } - }, - "ape-numfmt": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-numfmt", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~numfmt//:numfmt" - } - }, - "ape-tail": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tail", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tail//:tail" - } - }, - "ape-bzip2": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-bzip2", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~bzip2//:bzip2" - } - }, - "ape-env": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-env", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~env//:env" - } - }, - "ape-vdir": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-vdir", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~vdir//:vdir" - } - }, - "ape-patch": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-patch", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~patch//:patch" - } - }, - "ape-realpath": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-realpath", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~realpath//:realpath" - } - }, - "ape-ptx": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-ptx", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~ptx//:ptx" - } - }, - "ape-awk": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-awk", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~awk//:awk" - } - }, - "ape-stat": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-stat", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~stat//:stat" - } - }, - "ape-brotli": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-brotli", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~brotli//:brotli" - } - }, - "ape-lua": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-lua", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~lua//:lua" - } - }, - "ape-nesemu1": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-nesemu1", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~nesemu1//:nesemu1" - } - }, - "ape-wget": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-wget", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~wget//:wget" - } - }, - "ape-tty": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tty", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tty//:tty" - } - }, - "ape-unzip": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-unzip", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~unzip//:unzip" - } - }, - "ape-pr": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pr", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pr//:pr" - } - }, - "ape-whoami": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-whoami", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~whoami//:whoami" - } - }, - "ape-xz": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-xz", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~xz//:xz" - } - }, - "ape-uniq": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-uniq", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~uniq//:uniq" - } - }, - "coreutils": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~coreutils", - "target": "@@rules_coreutils~1.0.0-alpha.8~_repo_rules~coreutils//:coreutils" - } - }, - "ape-readlink": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-readlink", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~readlink//:readlink" - } - }, - "ape-zstd": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-zstd", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~zstd//:zstd" - } - }, - "ape-cksum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cksum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~cksum//:cksum" - } - }, - "ape-tee": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tee", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tee//:tee" - } - }, - "ape-sha1sum": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sha1sum", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sha1sum//:sha1sum" - } - }, - "ape-logname": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-logname", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~logname//:logname" - } - }, - "ape-sort": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sort", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sort//:sort" - } - }, - "ape-tree": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-tree", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~tree//:tree" - } - }, - "ape-less": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-less", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~less//:less" - } - }, - "ape-vim": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-vim", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~vim//:vim" - } - }, - "ape-dash": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-dash", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~dash//:dash" - } - }, - "ape-redbean": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-redbean", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~redbean//:redbean" - } - }, - "ape-sync": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sync", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sync//:sync" - } - }, - "ape-install": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-install", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~install//:install" - } - }, - "ape-shuf": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-shuf", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~shuf//:shuf" - } - }, - "ape-stty": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-stty", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~stty//:stty" - } - }, - "ape-zip": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-zip", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~zip//:zip" - } - }, - "ape-id": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-id", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~id//:id" - } - }, - "ape-truncate": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-truncate", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~truncate//:truncate" - } - }, - "ape-runcon": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-runcon", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~runcon//:runcon" - } - }, - "ape-true": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-true", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~true//:true" - } - }, - "ape-pypack1": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-pypack1", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~pypack1//:pypack1" - } - }, - "ape-cpuid": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-cpuid", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~cpuid//:cpuid" - } - }, - "ape-sleep": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-sleep", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~sleep//:sleep" - } - }, - "ape-test": { - "bzlFile": "@@toolchain_utils~1.0.0-beta.4//toolchain/export/symlink:repository.bzl", - "ruleClassName": "symlink", - "attributes": { - "name": "toolchain_utils~1.0.0-beta.4~toolchain_export~ape-test", - "target": "@@ape~1.0.0-alpha.3~_repo_rules~test//:test" - } + "@@platforms//host:extension.bzl%host_platform": { + "general": { + "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=", + "usagesDigest": "V1R2Y2oMxKNfx2WCWpSCaUV1WefW1o8HZGm3v1vHgY4=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "host_platform": { + "bzlFile": "@@platforms//host:extension.bzl", + "ruleClassName": "host_platform_repo", + "attributes": {} } - } + }, + "recordedRepoMappingEntries": [] } } } diff --git a/test/base/BUILD.bazel b/test/base/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/test/base/BUILD.tmpl.bazel b/test/base/BUILD.tmpl.bazel new file mode 100644 index 0000000000000000000000000000000000000000..5c8e2836fdc43bd35fa76de1430ce62663623a45 --- /dev/null +++ b/test/base/BUILD.tmpl.bazel @@ -0,0 +1,4 @@ +exports_files( + ["{{out}}"], + visibility = ["//visibility:public"], +) diff --git a/test/base/defs.bzl b/test/base/defs.bzl new file mode 100644 index 0000000000000000000000000000000000000000..dd5958d4463d9e1312269bcc908524b11a8440c2 --- /dev/null +++ b/test/base/defs.bzl @@ -0,0 +1,5 @@ +load(":repository.bzl", _base = "base") + +visibility("//...") + +base = _base diff --git a/test/base/repository.bzl b/test/base/repository.bzl new file mode 100644 index 0000000000000000000000000000000000000000..81a5a2f19b9a09f8f679888e820d39287f4a2e83 --- /dev/null +++ b/test/base/repository.bzl @@ -0,0 +1,14 @@ +visibility("//...") + +DOC = """Provides a repository to put the `bazelisk` output base into.""" + +ATTRS = {} + +def implementation(rctx): + rctx.file("BUILD.bazel", "") + +base = repository_rule( + doc = DOC, + attrs = ATTRS, + implementation = implementation, +) diff --git a/test/build/BUILD.bazel b/test/build/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/test/build/BUILD.tmpl.bazel b/test/build/BUILD.tmpl.bazel new file mode 100644 index 0000000000000000000000000000000000000000..5c8e2836fdc43bd35fa76de1430ce62663623a45 --- /dev/null +++ b/test/build/BUILD.tmpl.bazel @@ -0,0 +1,4 @@ +exports_files( + ["{{out}}"], + visibility = ["//visibility:public"], +) diff --git a/test/build/defs.bzl b/test/build/defs.bzl new file mode 100644 index 0000000000000000000000000000000000000000..69d8c82f91da4836aaeb9d61b3bbb185c7c1c280 --- /dev/null +++ b/test/build/defs.bzl @@ -0,0 +1,5 @@ +load(":repository.bzl", _build = "build") + +visibility("//...") + +build = _build diff --git a/test/build/repository.bzl b/test/build/repository.bzl new file mode 100644 index 0000000000000000000000000000000000000000..70783c0e43b357d9d8437f5e6ad6a2ba94bde0aa --- /dev/null +++ b/test/build/repository.bzl @@ -0,0 +1,99 @@ +visibility("//...") + +DOC = """Used to build `bazel-git` at repository context time. + +This allows the local `bazel-git` to be used with `rules_git` repository rules. +""" + +ATTRS = { + "srcs": attr.label_list( + doc = "The source code to be built", + mandatory = True, + allow_files = True, + allow_empty = False, + ), + "target": attr.string( + doc = "The Bazel target to build.", + mandatory = True, + ), + "out": attr.string( + doc = "The output file name which the built target will be move into.", + mandatory = True, + ), + "build": attr.label( + doc = "The `BUILD.bazel` template file.", + default = ":BUILD.tmpl.bazel", + allow_single_file = True, + ), + "bazelisk": attr.label( + doc = "The `bazelisk` executable.", + default = "@bazelisk", + allow_single_file = True, + executable = True, + cfg = "exec", + ), + "coreutils": attr.label( + doc = "The `coreutils` executable.", + default = "@coreutils", + allow_single_file = True, + executable = True, + cfg = "exec", + ), + "base": attr.label( + doc = "The output base to use.", + default = "@base//:BUILD.bazel", + ), +} + +def implementation(rctx): + tmp = rctx.path(".tmp") + + # Symlink sources + src = tmp.get_child("src") + rctx.report_progress("Symlinking sources") + for s in rctx.attr.srcs: + path = rctx.path(s) + root = str(rctx.workspace_root) + relative = str(path).removeprefix("{}/".format(root)) + absolute = src.get_child(relative) + rctx.symlink(path, absolute) + + # Helper function to run Bazelisk + def _bazelisk(*args): + base = str(rctx.path(rctx.path(rctx.attr.base).dirname).get_child(rctx.name)) + cmd = (rctx.attr.bazelisk, "--output_base={}".format(base)) + args + result = rctx.execute(cmd, working_directory = str(src)) + if result.return_code != 0: + fail("`bazelisk {}`: {}".format(" ".join(args), result.stderr)) + return result + + # Run the Bazel build + rctx.report_progress("Building: {}".format(rctx.attr.target)) + result = _bazelisk("build", rctx.attr.target) + + # Move the built binary + result = _bazelisk("cquery", rctx.attr.target, "--output=starlark", "--starlark:expr=target.files.to_list()[0].path") + built = result.stdout.rstrip() + cmd = (rctx.attr.coreutils, "cp", str(src.get_child(built)), rctx.path(rctx.attr.out)) + result = rctx.execute(cmd) + if result.return_code != 0: + fail("Failed to copy `{}`: {}".format(built, result.stderr)) + + # Clean up the temporary directory + rctx.delete(tmp) + + # Template out the `BUILD.bazel` file + rctx.template( + "BUILD.bazel", + rctx.attr.build, + substitutions = { + "{{out}}": rctx.attr.out, + }, + executable = False, + ) + +build = repository_rule( + doc = DOC, + attrs = ATTRS, + implementation = implementation, +) diff --git a/test/github-git-git/BUILD.bazel b/test/github-git-git/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..f0720de3b67ec46f6d764b9b456eeba15051ae08 --- /dev/null +++ b/test/github-git-git/BUILD.bazel @@ -0,0 +1,49 @@ +load("@bazel_skylib//rules:build_test.bzl", "build_test") +load("@rules_diff//diff/directory/test:defs.bzl", "diff_directory_test") + +diff_directory_test( + name = "checkout", + size = "small", + a = "@github-git-git-2.43.0//:checkout", + b = "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:checkout", +) + +build_test( + name = "archive.tar", + size = "small", + targets = [ + "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:archive.tar", + ], +) + +build_test( + name = "archive.tar.gz", + size = "small", + targets = [ + "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:archive.tar.gz", + ], +) + +build_test( + name = "archive.tar.bz2", + size = "small", + targets = [ + "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:archive.tar.bz2", + ], +) + +build_test( + name = "archive.tar.xz", + size = "small", + targets = [ + "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:archive.tar.xz", + ], +) + +build_test( + name = "archive.tar.zst", + size = "small", + targets = [ + "@github-git-git-c089584ac8dedc3aa7c2c404839bc098050298a2//:archive.tar.zst", + ], +) diff --git a/toolchain/git/BUILD.bazel b/toolchain/git/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..9d35edd238f16c55575f89851ee2fe1e1d8624e3 --- /dev/null +++ b/toolchain/git/BUILD.bazel @@ -0,0 +1,19 @@ +load("@toolchain_utils//toolchain/info:defs.bzl", "toolchain_info") +load("@toolchain_utils//toolchain/test:defs.bzl", "toolchain_test") + +toolchain_info( + name = "bazel-git", + target = "//cmd/bazel-git", +) + +toolchain( + name = "hermetic", + toolchain = ":bazel-git", + toolchain_type = "@rules_git//git/toolchain/git:type", +) + +toolchain_test( + name = "test", + args = ["--help"], + toolchains = ["@rules_git//git/toolchain/git:resolved"], +)