diff --git a/.github/ISSUE_TEMPLATE/1-bugfix.yml b/.github/ISSUE_TEMPLATE/1-bugfix.yml index c5ef483d..ee16ca0e 100644 --- a/.github/ISSUE_TEMPLATE/1-bugfix.yml +++ b/.github/ISSUE_TEMPLATE/1-bugfix.yml @@ -16,67 +16,67 @@ description: Issue to track a bug title: "Bug: Your bugfix title" labels: ["codeowner_review"] body: -- type: markdown - attributes: - value: "## Bug Ticket creation" -- type: textarea - attributes: - label: Description - description: Short Description of the Bug - validations: - required: true -- type: dropdown - attributes: - label: Error Occurrence Rate - options: - - Single Event - - Sporadic - - Highly Intermittent - - Reproducible -- type: textarea - attributes: - label: How to reproduce - description: How to reproduce? -- type: textarea - attributes: - label: Supporting Information - description: | - During which operational state did the issue occur - Observations / Screenshots / Traces - validations: - required: false -- type: dropdown - attributes: - label: Classification - options: - - minor - - major - - critical - - blocker - default: 0 - validations: - required: true -- type: dropdown - attributes: - label: Affected Version - options: - - 0.5 - - 1.0 - default: 0 - validations: - required: true -- type: dropdown - attributes: - label: Expected Closure Version - options: - - 0.5 - - 1.0 - default: 0 - validations: - required: false -- type: checkboxes - attributes: - label: Category - options: - - label: Safety Related - - label: Security Related + - type: markdown + attributes: + value: "## Bug Ticket creation" + - type: textarea + attributes: + label: Description + description: Short Description of the Bug + validations: + required: true + - type: dropdown + attributes: + label: Error Occurrence Rate + options: + - Single Event + - Sporadic + - Highly Intermittent + - Reproducible + - type: textarea + attributes: + label: How to reproduce + description: How to reproduce? + - type: textarea + attributes: + label: Supporting Information + description: | + During which operational state did the issue occur + Observations / Screenshots / Traces + validations: + required: false + - type: dropdown + attributes: + label: Classification + options: + - minor + - major + - critical + - blocker + default: 0 + validations: + required: true + - type: dropdown + attributes: + label: Affected Version + options: + - 0.5 + - 1.0 + default: 0 + validations: + required: true + - type: dropdown + attributes: + label: Expected Closure Version + options: + - 0.5 + - 1.0 + default: 0 + validations: + required: false + - type: checkboxes + attributes: + label: Category + options: + - label: Safety Related + - label: Security Related diff --git a/.github/ISSUE_TEMPLATE/2-improvement.yml b/.github/ISSUE_TEMPLATE/2-improvement.yml index 718ac93d..fa14031a 100644 --- a/.github/ISSUE_TEMPLATE/2-improvement.yml +++ b/.github/ISSUE_TEMPLATE/2-improvement.yml @@ -16,37 +16,37 @@ description: Issue to track a improvement / task title: "Improvement: Your Improvement title" labels: ["codeowner_review"] body: -- type: textarea - attributes: - label: What - description: | - - Goal of the Improvement / Task - - If Req/Architecture is affected, the template of - [Change Management](https://eclipse-score.github.io/process_description/main/process_areas/change_management/guidance/change_management_impact_analysis_template.html) needs to be used - validations: - required: true -- type: textarea - attributes: - label: How - description: Details on implementation approach - validations: - required: false -- type: textarea - attributes: - label: Estimates for realization - description: | - - Estimate the effort, resources, risk for the realization - - Impact to users of the feature - validations: - required: true -- type: checkboxes - attributes: - label: Category - options: - - label: Affects Detailed Design -- type: checkboxes - attributes: - label: Requirements / Architecture - options: - - label: Requirements / Architecture are not affected by this change? - required: true + - type: textarea + attributes: + label: What + description: | + - Goal of the Improvement / Task + - If Req/Architecture is affected, the template of + [Change Management](https://eclipse-score.github.io/process_description/main/process_areas/change_management/guidance/change_management_impact_analysis_template.html) needs to be used + validations: + required: true + - type: textarea + attributes: + label: How + description: Details on implementation approach + validations: + required: false + - type: textarea + attributes: + label: Estimates for realization + description: | + - Estimate the effort, resources, risk for the realization + - Impact to users of the feature + validations: + required: true + - type: checkboxes + attributes: + label: Category + options: + - label: Affects Detailed Design + - type: checkboxes + attributes: + label: Requirements / Architecture + options: + - label: Requirements / Architecture are not affected by this change? + required: true diff --git a/.github/workflows/build_and_test_host_gcc.yml b/.github/workflows/build_and_test_host_gcc.yml index 9ac9975c..c551f6e4 100644 --- a/.github/workflows/build_and_test_host_gcc.yml +++ b/.github/workflows/build_and_test_host_gcc.yml @@ -21,16 +21,16 @@ on: merge_group: types: [checks_requested] jobs: - build_and_test_gcc_host_gcc12: - runs-on: ubuntu-latest - container: - image: ghcr.io/eclipse-score/devcontainer:latest - steps: - - name: Checkout repository - uses: actions/checkout@v4.2.2 - - name: Bazel build communication targets - run: | - bazel build //... - - name: Bazel test communication targets - run: | - bazel test //... --build_tests_only + build_and_test_gcc_host_gcc12: + runs-on: ubuntu-latest + container: + image: ghcr.io/eclipse-score/devcontainer:latest + steps: + - name: Checkout repository + uses: actions/checkout@v4.2.2 + - name: Bazel build communication targets + run: | + bazel build //... + - name: Bazel test communication targets + run: | + bazel test //... --build_tests_only diff --git a/BUILD b/BUILD index 8acad8f8..fd746997 100644 --- a/BUILD +++ b/BUILD @@ -10,3 +10,14 @@ # # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* +load("@score_format_checker//:macros.bzl", "use_format_targets") +load("@score_starpls_lsp//:starpls.bzl", "setup_starpls") + +# Add target for formatting checks +use_format_targets() + +# Add StarPLS server for formatting +setup_starpls( + name = "starpls_server", + visibility = ["//visibility:public"], +) diff --git a/MODULE.bazel b/MODULE.bazel index 546b171b..48700606 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -12,15 +12,15 @@ # ******************************************************************************* module(name = "communication") - bazel_dep(name = "platforms", version = "0.0.11") -bazel_dep(name = "score_toolchains_gcc", version = "0.4", dev_dependency=True) -gcc = use_extension("@score_toolchains_gcc//extentions:gcc.bzl", "gcc", dev_dependency=True) +bazel_dep(name = "score_toolchains_gcc", version = "0.4", dev_dependency = True) + +gcc = use_extension("@score_toolchains_gcc//extentions:gcc.bzl", "gcc", dev_dependency = True) gcc.toolchain( - url = "https://github.com/eclipse-score/toolchains_gcc_packages/releases/download/0.0.1/x86_64-unknown-linux-gnu_gcc12.tar.gz", sha256 = "457f5f20f57528033cb840d708b507050d711ae93e009388847e113b11bf3600", strip_prefix = "x86_64-unknown-linux-gnu", + url = "https://github.com/eclipse-score/toolchains_gcc_packages/releases/download/0.0.1/x86_64-unknown-linux-gnu_gcc12.tar.gz", ) # TODO to be moved to toolchain. https://github.com/eclipse-score/toolchains_gcc/issues/11 @@ -31,32 +31,51 @@ gcc.extra_features( ], ) gcc.warning_flags( - minimal_warnings = ["-Wall", "-Wno-error=deprecated-declarations"], - strict_warnings = ["-Wextra", "-Wpedantic"], + minimal_warnings = [ + "-Wall", + "-Wno-error=deprecated-declarations", + ], + strict_warnings = [ + "-Wextra", + "-Wpedantic", + ], treat_warnings_as_errors = ["-Werror"], ) - use_repo(gcc, "gcc_toolchain", "gcc_toolchain_gcc") bazel_dep(name = "googletest", version = "1.15.0") bazel_dep(name = "google_benchmark", version = "1.9.1") - bazel_dep(name = "rules_rust", version = "0.61.0") crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate") -crate.spec(package = "futures", version = "0.3.31") -crate.spec(package = "libc", version = "0.2.155") -crate.spec(package = "clap", version = "4.5.4", features = ["derive"]) +# Format checker +bazel_dep(name = "score_format_checker", version = "0.1.1") +bazel_dep(name = "aspect_rules_lint", version = "1.0.3") +bazel_dep(name = "buildifier_prebuilt", version = "7.3.1") +bazel_dep(name = "score_starpls_lsp", version = "0.1.0") +crate.spec( + package = "futures", + version = "0.3.31", +) +crate.spec( + package = "libc", + version = "0.2.155", +) +crate.spec( + features = ["derive"], + package = "clap", + version = "4.5.4", +) crate.from_specs(name = "crate_index") use_repo(crate, "crate_index") bazel_dep(name = "rules_boost", repo_name = "com_github_nelhage_rules_boost") archive_override( module_name = "rules_boost", - urls = "https://github.com/nelhage/rules_boost/archive/refs/heads/master.tar.gz", strip_prefix = "rules_boost-master", + urls = "https://github.com/nelhage/rules_boost/archive/refs/heads/master.tar.gz", ) non_module_boost_repositories = use_extension("@com_github_nelhage_rules_boost//:boost/repositories.bzl", "non_module_dependencies") @@ -65,22 +84,22 @@ use_repo( "boost", ) - bazel_dep(name = "download_utils", version = "1.0.1") + download_archive = use_repo_rule("@download_utils//download/archive:defs.bzl", "download_archive") + download_archive( name = "json_schema_validator", - urls = ["https://github.com/pboettch/json-schema-validator/archive/refs/tags/2.1.0.tar.gz"], build = "//third_party/json_schema_validator:json_schema_validator.BUILD", strip_prefix = "json-schema-validator-2.1.0", + urls = ["https://github.com/pboettch/json-schema-validator/archive/refs/tags/2.1.0.tar.gz"], ) bazel_dep(name = "nlohmann_json", version = "3.11.3") bazel_dep(name = "bazel_skylib", version = "1.7.1") - bazel_dep(name = "score-baselibs", version = "0.0.0") git_override( module_name = "score-baselibs", - remote = "https://github.com/eclipse-score/baselibs.git", commit = "46923f5c4f302bd9feae0261588687aaf32e3c5c", + remote = "https://github.com/eclipse-score/baselibs.git", ) diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 1b5474da..8a5d5147 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -7,19 +7,37 @@ "https://bcr.bazel.build/modules/abseil-cpp/20230125.1/MODULE.bazel": "89047429cb0207707b2dface14ba7f8df85273d484c2572755be4bab7ce9c3a0", "https://bcr.bazel.build/modules/abseil-cpp/20230802.0.bcr.1/MODULE.bazel": "1c8cec495288dccd14fdae6e3f95f772c1c91857047a098fad772034264cc8cb", "https://bcr.bazel.build/modules/abseil-cpp/20230802.0/MODULE.bazel": "d253ae36a8bd9ee3c5955384096ccb6baf16a1b1e93e858370da0a3b94f77c16", + "https://bcr.bazel.build/modules/abseil-cpp/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915", + "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed", "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/MODULE.bazel": "73939767a4686cd9a520d16af5ab440071ed75cec1a876bf2fcfaf1f71987a16", "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/source.json": "750d5e29326fb59cbe61116a7b803c8a1d0a7090a9c8ed89888d188e3c473fc7", "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85", "https://bcr.bazel.build/modules/apple_support/1.17.1/MODULE.bazel": "655c922ab1209978a94ef6ca7d9d43e940cd97d9c172fb55f94d91ac53f8610b", "https://bcr.bazel.build/modules/apple_support/1.17.1/source.json": "6b2b8c74d14e8d485528a938e44bdb72a5ba17632b9e14ef6e68a5ee96c8347f", "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.42.2/MODULE.bazel": "2e0d8ab25c57a14f56ace1c8e881b69050417ff91b2fb7718dc00d201f3c3478", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.7/MODULE.bazel": "491f8681205e31bb57892d67442ce448cda4f472a8e6b3dc062865e29a64f89c", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.7/source.json": "87f12b449cd1d27d3e83840a59a6966d557e7c3c5f19e7b2e0361da5edc6b397", + "https://bcr.bazel.build/modules/aspect_rules_js/1.33.1/MODULE.bazel": "db3e7f16e471cf6827059d03af7c21859e7a0d2bc65429a3a11f005d46fc501b", + "https://bcr.bazel.build/modules/aspect_rules_js/1.40.0/MODULE.bazel": "01a1014e95e6816b68ecee2584ae929c7d6a1b72e4333ab1ff2d2c6c30babdf1", + "https://bcr.bazel.build/modules/aspect_rules_js/1.40.0/source.json": "b6fd491369e9ef888fdef64b839023a2360caaea8eb370d2cfbfdd2a96721311", + "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/MODULE.bazel": "e767c5dbfeb254ec03275a7701b5cfde2c4d2873676804bc7cb27ddff3728fed", + "https://bcr.bazel.build/modules/aspect_rules_lint/1.0.3/MODULE.bazel": "ed0fe929647ba21d2041e14ea3d757133ca306b72d4998e8a3d0d2f515196765", + "https://bcr.bazel.build/modules/aspect_rules_lint/1.0.3/source.json": "2d2dce6a477e7730b2fb839761166566db7c0e8e76af83c21d2e97731f9099af", + "https://bcr.bazel.build/modules/bazel_features/0.1.0/MODULE.bazel": "47011d645b0f949f42ee67f2e8775188a9cf4a0a1528aa2fa4952f2fd00906fd", "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", "https://bcr.bazel.build/modules/bazel_features/1.10.0/MODULE.bazel": "f75e8807570484a99be90abcd52b5e1f390362c258bcb73106f4544957a48101", "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", + "https://bcr.bazel.build/modules/bazel_features/1.15.0/MODULE.bazel": "d38ff6e517149dc509406aca0db3ad1efdd890a85e049585b7234d04238e2a4d", + "https://bcr.bazel.build/modules/bazel_features/1.17.0/MODULE.bazel": "039de32d21b816b47bd42c778e0454217e9c9caac4a3cf8e15c7231ee3ddee4d", "https://bcr.bazel.build/modules/bazel_features/1.18.0/MODULE.bazel": "1be0ae2557ab3a72a57aeb31b29be347bcdc5d2b1eb1e70f39e3851a7e97041a", "https://bcr.bazel.build/modules/bazel_features/1.19.0/MODULE.bazel": "59adcdf28230d220f0067b1f435b8537dd033bfff8db21335ef9217919c7fb58", + "https://bcr.bazel.build/modules/bazel_features/1.2.0/MODULE.bazel": "122b2b606622afbaa498913d54f52d9bcd2d19a5edd1bd6d6c5aa17441c4d5f9", "https://bcr.bazel.build/modules/bazel_features/1.21.0/MODULE.bazel": "675642261665d8eea09989aa3b8afb5c37627f1be178382c320d1b46afba5e3b", "https://bcr.bazel.build/modules/bazel_features/1.21.0/source.json": "3e8379efaaef53ce35b7b8ba419df829315a880cb0a030e5bb45c96d6d5ecb5f", + "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.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e", @@ -27,18 +45,26 @@ "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.1/MODULE.bazel": "a0dcb779424be33100dcae821e9e27e4f2901d9dfd5333efe5ac6a8d7ab75e1d", + "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.7.0/MODULE.bazel": "0db596f4563de7938de764cc8deeabec291f55e8ec15299718b93c4423e9796d", "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b", - "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/source.json": "f121b43eeefc7c29efbd51b83d08631e2347297c95aac9764a701f2a6a2bb953", + "https://bcr.bazel.build/modules/bazel_skylib/1.8.1/MODULE.bazel": "88ade7293becda963e0e3ea33e7d54d3425127e0a326e0d17da085a5f1f03ff6", + "https://bcr.bazel.build/modules/bazel_skylib/1.8.1/source.json": "7ebaefba0b03efe59cac88ed5bbc67bcf59a3eff33af937345ede2a38b2d368a", "https://bcr.bazel.build/modules/boringssl/0.0.0-20240530-2db0eb3/MODULE.bazel": "d0405b762c5e87cd445b7015f2b8da5400ef9a8dbca0bfefa6c1cea79d528a97", "https://bcr.bazel.build/modules/boringssl/0.0.0-20240530-2db0eb3/source.json": "0d413869349e82e5d679802abe9ce23e0326bbf56daa97ae9e7dbdcec72982fc", + "https://bcr.bazel.build/modules/buildifier_prebuilt/6.1.2/MODULE.bazel": "2ef4962c8b0b6d8d21928a89190755619254459bc67f870dc0ccb9ba9952d444", + "https://bcr.bazel.build/modules/buildifier_prebuilt/7.3.1/MODULE.bazel": "537faf0ad9f5892910074b8e43b4c91c96f1d5d86b6ed04bdbe40cf68aa48b68", + "https://bcr.bazel.build/modules/buildifier_prebuilt/7.3.1/source.json": "55153a5e6ca9c8a7e266c4b46b951e8a010d25ec6062bc35d5d4f89925796bad", "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/bzip2/1.0.8/MODULE.bazel": "83ee443b286b0b91566e5ee77e74ba6445895f3135467893871560f9e4ebc159", "https://bcr.bazel.build/modules/bzip2/1.0.8/source.json": "b64f3a2f973749cf5f6ee32b3d804af56a35a746228a7845ed5daa31c8cc8af1", "https://bcr.bazel.build/modules/download_utils/1.0.1/MODULE.bazel": "f1d0afade59e37de978506d6bbf08d7fe5f94964e86944aaf58efcead827b41b", "https://bcr.bazel.build/modules/download_utils/1.0.1/source.json": "05ddc5a3b1f7d8f3e5e0fd1617479e1cf72d63d59ab2b1f0463557a14fc6be0a", + "https://bcr.bazel.build/modules/gazelle/0.27.0/MODULE.bazel": "3446abd608295de6d90b4a8a118ed64a9ce11dcb3dda2dc3290a22056bd20996", + "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel": "f888a1effe338491f35f0e0e85003b47bb9d8295ccba73c37e07702d8d31c65b", "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb", "https://bcr.bazel.build/modules/google_benchmark/1.9.1/MODULE.bazel": "1abfd0395aea2db11943d817afb6c03208bee28b2e47eccc3042f67a22d3ce1b", "https://bcr.bazel.build/modules/google_benchmark/1.9.1/source.json": "5d68196f85589340f5ca834d0bea3a49129d8cebf486d51b3d29419b0437bbbc", @@ -64,8 +90,12 @@ "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/27.0/MODULE.bazel": "7873b60be88844a0a1d8f80b9d5d20cfbd8495a689b8763e76c6372998d3f64c", - "https://bcr.bazel.build/modules/protobuf/27.0/source.json": "1acf3d080c728d42f423fde5422fd0a1a24f44c15908124ce12363a253384193", + "https://bcr.bazel.build/modules/protobuf/27.1/MODULE.bazel": "703a7b614728bb06647f965264967a8ef1c39e09e8f167b3ca0bb1fd80449c0d", + "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df", + "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92", + "https://bcr.bazel.build/modules/protobuf/29.0-rc3/source.json": "c16a6488fb279ef578da7098e605082d72ed85fc8d843eaae81e7d27d0f4625d", "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/pybind11_bazel/2.11.1/MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e", "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34", @@ -73,7 +103,15 @@ "https://bcr.bazel.build/modules/re2/2023-09-01/MODULE.bazel": "cb3d511531b16cfc78a225a9e2136007a48cf8a677e4264baeab57fe78a80206", "https://bcr.bazel.build/modules/re2/2024-07-02/MODULE.bazel": "0eadc4395959969297cbcf31a249ff457f2f1d456228c67719480205aa306daa", "https://bcr.bazel.build/modules/re2/2024-07-02/source.json": "547d0111a9d4f362db32196fef805abbf3676e8d6afbe44d395d87816c1130ca", + "https://bcr.bazel.build/modules/rules_android/0.1.1/MODULE.bazel": "48809ab0091b07ad0182defb787c4c5328bd3a278938415c00a7b69b50c4d3a8", + "https://bcr.bazel.build/modules/rules_android/0.1.1/source.json": "e6986b41626ee10bdc864937ffb6d6bf275bb5b9c65120e6137d56e6331f089e", + "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel": "6189aec18a4f7caff599ad41b851ab7645d4f1e114aa6431acf9b0666eb92162", + "https://bcr.bazel.build/modules/rules_buf/0.1.1/source.json": "021363d254f7438f3f10725355969c974bb2c67e0c28667782ade31a9cdb747f", "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", + "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002", + "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191", + "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc", + "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87", "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c", "https://bcr.bazel.build/modules/rules_cc/0.0.6/MODULE.bazel": "abf360251023dfe3efcef65ab9d56beefa8394d4176dd29529750e1c57eaa33f", "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e", @@ -83,47 +121,87 @@ "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/MODULE.bazel": "b9527010e5fef060af92b6724edb3691970a5b1f76f74b21d39f7d433641be60", "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/source.json": "9300e71df0cdde0952f10afff1401fa664e9fc5d9ae6204660ba1b158d90d6a6", "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "c9e8c682bf75b0e7c704166d79b599f93b72cfca5ad7477df596947891feeef6", + "https://bcr.bazel.build/modules/rules_fuzzing/0.5.2/MODULE.bazel": "40c97d1144356f52905566c55811f13b299453a14ac7769dfba2ac38192337a8", + "https://bcr.bazel.build/modules/rules_fuzzing/0.5.2/source.json": "c8b1e2c717646f1702290959a3302a178fb639d987ab61d548105019f11e527e", + "https://bcr.bazel.build/modules/rules_go/0.33.0/MODULE.bazel": "a2b11b64cd24bf94f57454f53288a5dacfe6cb86453eee7761b7637728c1910c", + "https://bcr.bazel.build/modules/rules_go/0.38.1/MODULE.bazel": "fb8e73dd3b6fc4ff9d260ceacd830114891d49904f5bda1c16bc147bcc254f71", + "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel": "d34fb2a249403a5f4339c754f1e63dc9e5ad70b47c5e97faee1441fc6636cd61", "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", "https://bcr.bazel.build/modules/rules_java/5.3.5/MODULE.bazel": "a4ec4f2db570171e3e5eb753276ee4b389bae16b96207e9d3230895c99644b86", + "https://bcr.bazel.build/modules/rules_java/6.5.2/MODULE.bazel": "1d440d262d0e08453fa0c4d8f699ba81609ed0e9a9a0f02cd10b3e7942e61e31", + "https://bcr.bazel.build/modules/rules_java/7.10.0/MODULE.bazel": "530c3beb3067e870561739f1144329a21c851ff771cd752a49e06e3dc9c2e71a", + "https://bcr.bazel.build/modules/rules_java/7.12.2/MODULE.bazel": "579c505165ee757a4280ef83cda0150eea193eed3bef50b1004ba88b99da6de6", + "https://bcr.bazel.build/modules/rules_java/7.2.0/MODULE.bazel": "06c0334c9be61e6cef2c8c84a7800cef502063269a5af25ceb100b192453d4ab", + "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", "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_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017", + "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939", + "https://bcr.bazel.build/modules/rules_java/8.5.1/source.json": "db1a77d81b059e0f84985db67a22f3f579a529a86b7997605be3d214a0abe38e", "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", "https://bcr.bazel.build/modules/rules_jvm_external/5.1/MODULE.bazel": "33f6f999e03183f7d088c9be518a63467dfd0be94a11d0055fe2d210f89aa909", - "https://bcr.bazel.build/modules/rules_jvm_external/5.1/source.json": "5abb45cc9beb27b77aec6a65a11855ef2b55d95dfdc358e9f312b78ae0ba32d5", + "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036", + "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0", + "https://bcr.bazel.build/modules/rules_jvm_external/6.3/source.json": "6f5f5a5a4419ae4e37c35a5bb0a6ae657ed40b7abc5a5189111b47fcebe43197", + "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/MODULE.bazel": "d269a01a18ee74d0335450b10f62c9ed81f2321d7958a2934e44272fe82dcef3", + "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/source.json": "2faa4794364282db7c06600b7e5e34867a564ae91bda7cae7c29c64e9466b7d5", "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/1.0.0/MODULE.bazel": "a7fda60eefdf3d8c827262ba499957e4df06f659330bbe6cdbdb975b768bb65c", "https://bcr.bazel.build/modules/rules_license/1.0.0/source.json": "a52c89e54cc311196e478f8382df91c15f7a2bfdf4c6cd0e2675cc2ff0b56efb", + "https://bcr.bazel.build/modules/rules_multirun/0.9.0/MODULE.bazel": "32d628ef586b5b23f67e55886b7bc38913ea4160420d66ae90521dda2ff37df0", + "https://bcr.bazel.build/modules/rules_multirun/0.9.0/source.json": "e882ba77962fa6c5fe68619e5c7d0374ec9a219fb8d03c42eadaf6d0243771bd", + "https://bcr.bazel.build/modules/rules_multitool/0.4.0/MODULE.bazel": "15517987d5c00c9e7faab41fbe22ee67a350b6eabcc1e08baded5c6d9025897f", + "https://bcr.bazel.build/modules/rules_multitool/0.4.0/source.json": "d73b450b7c6d9683e400d6cebc463fbc2b870cc5d8e2e75080d6278805aaab08", + "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel": "6bc03c8f37f69401b888023bf511cb6ee4781433b0cb56236b2e55a21e3a026a", + "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/source.json": "6e82cf5753d835ea18308200bc79b9c2e782efe2e2a4edc004a9162ca93382ca", "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_pkg/1.0.1/MODULE.bazel": "5b1df97dbc29623bccdf2b0dcd0f5cb08e2f2c9050aab1092fd39a41e82686ff", + "https://bcr.bazel.build/modules/rules_pkg/1.0.1/source.json": "bd82e5d7b9ce2d31e380dd9f50c111d678c3bdaca190cb76b0e1c71b05e1ba8a", "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-rc1/MODULE.bazel": "1e5b502e2e1a9e825eef74476a5a1ee524a92297085015a052510b09a1a09483", - "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/source.json": "8d8448e71706df7450ced227ca6b3812407ff5e2ccad74a43a9fbe79c84e34e0", + "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc2/MODULE.bazel": "e17f94f8a347e2c808517b65d74988839d2d62daceb50073e44060193b785eb1", + "https://bcr.bazel.build/modules/rules_proto/6.0.0/MODULE.bazel": "b531d7f09f58dce456cd61b4579ce8c86b38544da75184eadaf0a7cb7966453f", + "https://bcr.bazel.build/modules/rules_proto/6.0.2/MODULE.bazel": "ce916b775a62b90b61888052a416ccdda405212b6aaeb39522f7dc53431a5e73", + "https://bcr.bazel.build/modules/rules_proto/7.0.2/MODULE.bazel": "bf81793bd6d2ad89a37a40693e56c61b0ee30f7a7fdbaf3eabbf5f39de47dea2", + "https://bcr.bazel.build/modules/rules_proto/7.0.2/source.json": "1e5e7260ae32ef4f2b52fd1d0de8d03b606a44c91b694d2f1afb1d3b28a48ce1", "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f", "https://bcr.bazel.build/modules/rules_python/0.20.0/MODULE.bazel": "bfe14d17f20e3fe900b9588f526f52c967a6f281e47a1d6b988679bd15082286", "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7", + "https://bcr.bazel.build/modules/rules_python/0.23.1/MODULE.bazel": "49ffccf0511cb8414de28321f5fcf2a31312b47c40cc21577144b7447f2bf300", "https://bcr.bazel.build/modules/rules_python/0.25.0/MODULE.bazel": "72f1506841c920a1afec76975b35312410eea3aa7b63267436bfb1dd91d2d382", + "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel": "65dc875cc1a06c30d5bbdba7ab021fd9e551a6579e408a3943a61303e2228a53", + "https://bcr.bazel.build/modules/rules_python/0.28.0/MODULE.bazel": "cba2573d870babc976664a912539b320cbaa7114cd3e8f053c720171cde331ed", "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82", "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58", "https://bcr.bazel.build/modules/rules_python/0.33.2/MODULE.bazel": "3e036c4ad8d804a4dad897d333d8dce200d943df4827cb849840055be8d2e937", - "https://bcr.bazel.build/modules/rules_python/0.33.2/source.json": "e539592cd3aae4492032cecea510e46ca16eeb972271560b922cae9893944e2f", "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", + "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43", + "https://bcr.bazel.build/modules/rules_python/1.0.0/source.json": "b0162a65c6312e45e7912e39abd1a7f8856c2c7e41ecc9b6dc688a6f6400a917", "https://bcr.bazel.build/modules/rules_rust/0.61.0/MODULE.bazel": "0318a95777b9114c8740f34b60d6d68f9cfef61e2f4b52424ca626213d33787b", "https://bcr.bazel.build/modules/rules_rust/0.61.0/source.json": "d1bc743b5fa2e2abb35c436df7126a53dab0c3f35890ae6841592b2253786a63", + "https://bcr.bazel.build/modules/rules_shell/0.2.0/MODULE.bazel": "fda8a652ab3c7d8fee214de05e7a9916d8b28082234e8d2c0094505c5268ed3c", "https://bcr.bazel.build/modules/rules_shell/0.3.0/MODULE.bazel": "de4402cd12f4cc8fda2354fce179fdb068c0b9ca1ec2d2b17b3e21b24c1a937b", - "https://bcr.bazel.build/modules/rules_shell/0.3.0/source.json": "c55ed591aa5009401ddf80ded9762ac32c358d2517ee7820be981e2de9756cf3", + "https://bcr.bazel.build/modules/rules_shell/0.4.0/MODULE.bazel": "0f8f11bb3cd11755f0b48c1de0bbcf62b4b34421023aa41a2fc74ef68d9584f0", + "https://bcr.bazel.build/modules/rules_shell/0.4.0/source.json": "1d7fa7f941cd41dc2704ba5b4edc2e2230eea1cc600d80bd2b65838204c50b95", + "https://bcr.bazel.build/modules/stardoc/0.5.0/MODULE.bazel": "f9f1f46ba8d9c3362648eea571c6f9100680efc44913618811b58cc9c02cd678", "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8", "https://bcr.bazel.build/modules/stardoc/0.5.3/MODULE.bazel": "c7f6948dae6999bf0db32c1858ae345f112cacf98f174c7a8bb707e41b974f1c", - "https://bcr.bazel.build/modules/stardoc/0.5.3/source.json": "cd53fe968dc8cd98197c052db3db6d82562960c87b61e7a90ee96f8e4e0dda97", + "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4", + "https://bcr.bazel.build/modules/stardoc/0.7.0/MODULE.bazel": "05e3d6d30c099b6770e97da986c53bd31844d7f13d41412480ea265ac9e8079c", + "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5", + "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216", + "https://bcr.bazel.build/modules/toolchains_protoc/0.2.1/MODULE.bazel": "2f08433ff5e659069b3a1abfee2377d68f510f2de1da50678ed992c455b4ff91", + "https://bcr.bazel.build/modules/toolchains_protoc/0.2.1/source.json": "4ee6b007b62e1b9e493b00ccc60e61a258633f304b74813b6e7f7234927be94c", "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43", "https://bcr.bazel.build/modules/xz/5.4.5.bcr.5/MODULE.bazel": "b93d7035ac14c900dfdf7624e42cfcbfc34415aa8d3c83a6f225867c48d28dad", "https://bcr.bazel.build/modules/xz/5.4.5.bcr.5/source.json": "30c4e5c856087a60d92e2522eafd316c0661671f4478ca94c6b7bd877010210a", "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.5/MODULE.bazel": "eec517b5bbe5492629466e11dae908d043364302283de25581e3eb944326c4ca", - "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.5/source.json": "22bc55c47af97246cfc093d0acf683a7869377de362b5d1c552c2c2e16b7a806", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.6/MODULE.bazel": "e937cf0a3772f93ad91f3c7af4f330b76a878bbfee06527ca1a9673b790eb896", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.6/source.json": "5f397158198f338129c865a4c3ae21bc5626a9664b3c3b40fa3b3c2ec1ff83bf", + "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198", "https://bcr.bazel.build/modules/zstd/1.5.6/MODULE.bazel": "471ebe7d3cdd8c6469390fcf623eb4779ff55fbee0a87f1dc57a1def468b96d4", "https://bcr.bazel.build/modules/zstd/1.5.6/source.json": "02010c3333fc89b44fe861db049968decb6e688411f7f9d4f6791d74f9adfb51", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", @@ -132,16 +210,31 @@ "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20230125.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20230802.0.bcr.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20230802.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20230802.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20240116.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/abseil-cpp/20240116.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/apple_support/1.15.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/apple_support/1.17.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/apple_support/1.5.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_bazel_lib/1.42.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_bazel_lib/2.7.7/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_rules_js/1.33.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_rules_js/1.40.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_rules_lint/0.12.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/aspect_rules_lint/1.0.3/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/0.1.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.1.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.10.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.11.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.15.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.17.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.18.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.19.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.2.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.21.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.4.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_features/1.9.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.0.3/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.1.1/MODULE.bazel": "not found", @@ -149,13 +242,20 @@ "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.2.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.3.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.4.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.4.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.5.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.6.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.7.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.7.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bazel_skylib/1.8.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/boringssl/0.0.0-20240530-2db0eb3/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/buildifier_prebuilt/6.1.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/buildifier_prebuilt/7.3.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/buildozer/7.1.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/bzip2/1.0.8/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/download_utils/1.0.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/gazelle/0.27.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/gazelle/0.30.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/google_benchmark/1.8.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/google_benchmark/1.9.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/googletest/1.11.0/MODULE.bazel": "not found", @@ -175,13 +275,23 @@ "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/platforms/0.0.9/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/21.7/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/27.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/27.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/29.0-rc2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/29.0-rc3/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/3.19.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/3.19.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/protobuf/3.19.6/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/pybind11_bazel/2.11.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/pybind11_bazel/2.12.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/re2/2023-09-01/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/re2/2024-07-02/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_android/0.1.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_buf/0.1.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.10/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.13/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.15/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.16/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.6/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.0.8/MODULE.bazel": "not found", @@ -189,38 +299,76 @@ "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_cc/0.1.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_foreign_cc/0.10.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_fuzzing/0.5.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_go/0.33.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_go/0.38.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_go/0.39.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/4.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/5.3.5/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/6.5.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/7.10.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/7.12.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/7.2.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/7.6.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/7.6.5/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/8.3.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_java/8.5.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_jvm_external/4.4.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_jvm_external/5.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_jvm_external/5.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_jvm_external/6.3/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_kotlin/1.9.6/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_license/0.0.3/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_license/0.0.7/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_license/1.0.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_multirun/0.9.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_multitool/0.4.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_nodejs/5.8.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_pkg/0.7.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_pkg/1.0.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/4.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/6.0.0-rc1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/6.0.0-rc2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/6.0.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/6.0.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_proto/7.0.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.10.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.20.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.22.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.23.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.25.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.27.1/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.28.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.29.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.31.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.33.2/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/0.4.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_python/1.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_rust/0.61.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_shell/0.2.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_shell/0.3.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/rules_shell/0.4.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_format_checker/0.1.1/MODULE.bazel": "1acc254faa90e9f97b79ac69af25b6c21c561f8d6079914f6352b9b20d26bd37", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_format_checker/0.1.1/source.json": "e3d10be878d1a007967b75a5c6d9c3ec3d47c320685904b7f31c689b3cbcdb3a", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_starpls_lsp/0.1.0/MODULE.bazel": "b2f8c4c8d8e851706255ff9002b448bff6e040b8f0c6adedbde2a09375aa16cc", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_starpls_lsp/0.1.0/source.json": "3c7c49977b01a990f4f0a6d65c00e75a88433af7ad21a564db338cd079a92913", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_toolchains_gcc/0.4/MODULE.bazel": "370458c92c6cd9f91ea316d7658a5b82ee7422e22186328c86c570947508dc64", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/score_toolchains_gcc/0.4/source.json": "2a15ebc5b338c0223d172e2b1eca9d459c20f767ab406661ff82f76da8434bc3", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.5.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.5.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.5.3/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.5.4/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.7.0/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/stardoc/0.7.2/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/toolchains_protoc/0.2.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/xz/5.4.5.bcr.5/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.2.11/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.2.12/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.3.1.bcr.3/MODULE.bazel": "not found", - "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.3.1.bcr.5/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.3.1.bcr.6/MODULE.bazel": "not found", + "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zlib/1.3.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/eclipse-score/bazel_registry/refs/heads/main/modules/zstd/1.5.6/MODULE.bazel": "not found" }, "selectedYankedVersions": {}, @@ -253,6 +401,623 @@ ] } }, + "@@aspect_bazel_lib~//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "lIywunPSkJhCp6mXUfksrSPKxf9cWiIiLudbktooWUQ=", + "usagesDigest": "17c/RylQVEgzF6RQzlq9ivEKnvjl1WewPhQs4uJVidI=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "copy_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "copy_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "copy_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "copy_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "copy_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "copy_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_directory" + } + }, + "copy_to_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "copy_to_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_to_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "copy_to_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "copy_to_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "copy_to_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "copy_to_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_to_directory" + } + }, + "jq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "1.7" + } + }, + "jq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "1.7" + } + }, + "jq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "1.7" + } + }, + "jq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "1.7" + } + }, + "jq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "1.7" + } + }, + "jq": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", + "attributes": {} + }, + "jq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", + "attributes": { + "user_repository_name": "jq" + } + }, + "yq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "yq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "yq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "yq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "4.25.2" + } + }, + "yq_linux_s390x": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq_linux_ppc64le": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "yq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "yq": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", + "attributes": {} + }, + "yq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", + "attributes": { + "user_repository_name": "yq" + } + }, + "coreutils_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "0.0.26" + } + }, + "coreutils_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "0.0.26" + } + }, + "coreutils_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "0.0.26" + } + }, + "coreutils_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "0.0.26" + } + }, + "coreutils_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "0.0.26" + } + }, + "coreutils_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", + "attributes": { + "user_repository_name": "coreutils" + } + }, + "bsd_tar_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "bsd_tar_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "bsd_tar_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "bsd_tar_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "bsd_tar_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "bsdtar_binary_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "bsd_tar_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl", + "ruleClassName": "tar_toolchains_repo", + "attributes": { + "user_repository_name": "bsd_tar" + } + }, + "zstd_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:zstd_toolchain.bzl", + "ruleClassName": "zstd_binary_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "zstd_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:zstd_toolchain.bzl", + "ruleClassName": "zstd_binary_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "zstd_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:zstd_toolchain.bzl", + "ruleClassName": "zstd_binary_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "zstd_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:zstd_toolchain.bzl", + "ruleClassName": "zstd_binary_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "zstd_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:zstd_toolchain.bzl", + "ruleClassName": "zstd_toolchains_repo", + "attributes": { + "user_repository_name": "zstd" + } + }, + "expand_template_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "expand_template_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "expand_template_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "expand_template_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "expand_template_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "expand_template_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", + "attributes": { + "user_repository_name": "expand_template" + } + }, + "bats_support": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", + "urls": [ + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" + ], + "strip_prefix": "bats-support-0.3.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_assert": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", + "urls": [ + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" + ], + "strip_prefix": "bats-assert-2.1.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_file": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", + "urls": [ + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" + ], + "strip_prefix": "bats-file-0.4.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_toolchains": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", + "urls": [ + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" + ], + "strip_prefix": "bats-core-1.10.0", + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib~", + "aspect_bazel_lib", + "aspect_bazel_lib~" + ], + [ + "aspect_bazel_lib~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_bazel_lib~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@buildifier_prebuilt~//:defs.bzl%buildifier_prebuilt_deps_extension": { + "general": { + "bzlTransitiveDigest": "lqH5eQXGrxGyrPzoegk5Mn6zC3A1P0h+QsA1O/QlXHc=", + "usagesDigest": "yt+GfSH6jiwv+nPT5fzdhb/zB+8RgR4U+dna3WGxrzU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "buildifier_darwin_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-darwin-amd64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "375f823103d01620aaec20a0c29c6cbca99f4fd0725ae30b93655c6704f44d71" + } + }, + "buildifier_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-darwin-arm64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "5a6afc6ac7a09f5455ba0b89bd99d5ae23b4174dc5dc9d6c0ed5ce8caac3f813" + } + }, + "buildifier_linux_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-amd64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "5474cc5128a74e806783d54081f581662c4be8ae65022f557e9281ed5dc88009" + } + }, + "buildifier_linux_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-arm64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "0bf86c4bfffaf4f08eed77bde5b2082e4ae5039a11e2e8b03984c173c34a561c" + } + }, + "buildifier_windows_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-windows-amd64.exe" + ], + "downloaded_file_path": "buildifier.exe", + "executable": true, + "sha256": "370cd576075ad29930a82f5de132f1a1de4084c784a82514bd4da80c85acf4a8" + } + }, + "buildozer_darwin_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildozer-darwin-amd64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "854c9583efc166602276802658cef3f224d60898cfaa60630b33d328db3b0de2" + } + }, + "buildozer_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildozer-darwin-arm64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "31b1bfe20d7d5444be217af78f94c5c43799cdf847c6ce69794b7bf3319c5364" + } + }, + "buildozer_linux_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildozer-linux-amd64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "3305e287b3fcc68b9a35fd8515ee617452cd4e018f9e6886b6c7cdbcba8710d4" + } + }, + "buildozer_linux_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildozer-linux-arm64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "0b5a2a717ac4fc911e1fec8d92af71dbb4fe95b10e5213da0cc3d56cea64a328" + } + }, + "buildozer_windows_amd64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildozer-windows-amd64.exe" + ], + "downloaded_file_path": "buildozer.exe", + "executable": true, + "sha256": "58d41ce53257c5594c9bc86d769f580909269f68de114297f46284fbb9023dcf" + } + }, + "buildifier_prebuilt_toolchains": { + "bzlFile": "@@buildifier_prebuilt~//:defs.bzl", + "ruleClassName": "_buildifier_toolchain_setup", + "attributes": { + "assets_json": "[{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"375f823103d01620aaec20a0c29c6cbca99f4fd0725ae30b93655c6704f44d71\",\"version\":\"v7.3.1\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"5a6afc6ac7a09f5455ba0b89bd99d5ae23b4174dc5dc9d6c0ed5ce8caac3f813\",\"version\":\"v7.3.1\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"5474cc5128a74e806783d54081f581662c4be8ae65022f557e9281ed5dc88009\",\"version\":\"v7.3.1\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"0bf86c4bfffaf4f08eed77bde5b2082e4ae5039a11e2e8b03984c173c34a561c\",\"version\":\"v7.3.1\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"windows\",\"sha256\":\"370cd576075ad29930a82f5de132f1a1de4084c784a82514bd4da80c85acf4a8\",\"version\":\"v7.3.1\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"854c9583efc166602276802658cef3f224d60898cfaa60630b33d328db3b0de2\",\"version\":\"v7.3.1\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"31b1bfe20d7d5444be217af78f94c5c43799cdf847c6ce69794b7bf3319c5364\",\"version\":\"v7.3.1\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"3305e287b3fcc68b9a35fd8515ee617452cd4e018f9e6886b6c7cdbcba8710d4\",\"version\":\"v7.3.1\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"0b5a2a717ac4fc911e1fec8d92af71dbb4fe95b10e5213da0cc3d56cea64a328\",\"version\":\"v7.3.1\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"windows\",\"sha256\":\"58d41ce53257c5594c9bc86d769f580909269f68de114297f46284fbb9023dcf\",\"version\":\"v7.3.1\"}]" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "buildifier_prebuilt~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "buildifier_prebuilt~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, "@@rules_boost~//:boost/repositories.bzl%non_module_dependencies": { "general": { "bzlTransitiveDigest": "x3KMtXr4KoRJ4XlFzBdXD6YURDOScGJ0XQXOZnhxLs4=", @@ -298,6 +1063,31 @@ ] } }, + "@@rules_buf~//buf:extensions.bzl%ext": { + "general": { + "bzlTransitiveDigest": "gmPmM7QT5Jez2VVFcwbbMf/QWSRag+nJ1elFJFFTcn0=", + "usagesDigest": "1E3NeLCRI6VyKiersXVtONCbNopc5jIVqoHBOpcWb0A=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_buf_toolchains": { + "bzlFile": "@@rules_buf~//buf/internal:toolchain.bzl", + "ruleClassName": "buf_download_releases", + "attributes": { + "version": "v1.27.0" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_buf~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, "@@rules_foreign_cc~//foreign_cc:extensions.bzl%tools": { "general": { "bzlTransitiveDigest": "a7qnESofmIRYId6wwGNPJ9kvExU80KrkxL281P3+lBE=", @@ -638,6 +1428,268 @@ ] } }, + "@@rules_java~//java:rules_java_deps.bzl%compatibility_proxy": { + "general": { + "bzlTransitiveDigest": "KIX40nDfygEWbU+rq3nYpt3tVgTK/iO8PKh5VMBlN7M=", + "usagesDigest": "pwHZ+26iLgQdwvdZeA5wnAjKnNI3y6XO2VbhOTeo5h8=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "compatibility_proxy": { + "bzlFile": "@@rules_java~//java:rules_java_deps.bzl", + "ruleClassName": "_compatibility_proxy_repo_rule", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_java~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_kotlin~//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { + "general": { + "bzlTransitiveDigest": "fus14IFJ/1LGWWGKPH/U18VnJCoMjfDt1ckahqCnM0A=", + "usagesDigest": "aJF6fLy82rR95Ff5CZPAqxNoFgOMLMN5ImfBS0nhnkg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_jetbrains_kotlin_git": { + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", + "ruleClassName": "kotlin_compiler_git_repository", + "attributes": { + "urls": [ + "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip" + ], + "sha256": "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88" + } + }, + "com_github_jetbrains_kotlin": { + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", + "ruleClassName": "kotlin_capabilities_repository", + "attributes": { + "git_repository_name": "com_github_jetbrains_kotlin_git", + "compiler_version": "1.9.23" + } + }, + "com_github_google_ksp": { + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:ksp.bzl", + "ruleClassName": "ksp_compiler_plugin_repository", + "attributes": { + "urls": [ + "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip" + ], + "sha256": "ee0618755913ef7fd6511288a232e8fad24838b9af6ea73972a76e81053c8c2d", + "strip_version": "1.9.23-1.0.20" + } + }, + "com_github_pinterest_ktlint": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985", + "urls": [ + "https://github.com/pinterest/ktlint/releases/download/1.3.0/ktlint" + ], + "executable": true + } + }, + "rules_android": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806", + "strip_prefix": "rules_android-0.1.1", + "urls": [ + "https://github.com/bazelbuild/rules_android/archive/v0.1.1.zip" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_kotlin~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_multitool~//multitool:extension.bzl%multitool": { + "general": { + "bzlTransitiveDigest": "AtvPzG/SAawYMKVVHcMoJq4EXkVPTIhS3AeNwENXp9E=", + "usagesDigest": "Y0APH30vB4HkpwN4koQxfzlNYbB1li0yiUC++Miw4Xw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "multitool.linux_arm64": { + "bzlFile": "@@rules_multitool~//multitool/private:multitool.bzl", + "ruleClassName": "_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint~//format:multitool.lock.json", + "@@aspect_rules_lint~//lint:multitool.lock.json" + ], + "os": "linux", + "cpu": "arm64" + } + }, + "multitool.linux_x86_64": { + "bzlFile": "@@rules_multitool~//multitool/private:multitool.bzl", + "ruleClassName": "_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint~//format:multitool.lock.json", + "@@aspect_rules_lint~//lint:multitool.lock.json" + ], + "os": "linux", + "cpu": "x86_64" + } + }, + "multitool.macos_arm64": { + "bzlFile": "@@rules_multitool~//multitool/private:multitool.bzl", + "ruleClassName": "_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint~//format:multitool.lock.json", + "@@aspect_rules_lint~//lint:multitool.lock.json" + ], + "os": "macos", + "cpu": "arm64" + } + }, + "multitool.macos_x86_64": { + "bzlFile": "@@rules_multitool~//multitool/private:multitool.bzl", + "ruleClassName": "_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint~//format:multitool.lock.json", + "@@aspect_rules_lint~//lint:multitool.lock.json" + ], + "os": "macos", + "cpu": "x86_64" + } + }, + "multitool": { + "bzlFile": "@@rules_multitool~//multitool/private:multitool.bzl", + "ruleClassName": "_multitool_hub", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint~//format:multitool.lock.json", + "@@aspect_rules_lint~//lint:multitool.lock.json" + ] + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_nodejs~//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "xRRX0NuyvfLtjtzM4AqJgxdMSWWnLIw28rUUi10y6k0=", + "usagesDigest": "s5CNu865KI65QfxyGorn4uJtrbyzdNXnkZbjo9HQvxM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nodejs_linux_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_amd64", + "node_version": "16.19.0" + } + }, + "nodejs_linux_arm64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_arm64", + "node_version": "16.19.0" + } + }, + "nodejs_linux_s390x": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_s390x", + "node_version": "16.19.0" + } + }, + "nodejs_linux_ppc64le": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_ppc64le", + "node_version": "16.19.0" + } + }, + "nodejs_darwin_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "darwin_amd64", + "node_version": "16.19.0" + } + }, + "nodejs_darwin_arm64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "darwin_arm64", + "node_version": "16.19.0" + } + }, + "nodejs_windows_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "windows_amd64", + "node_version": "16.19.0" + } + }, + "nodejs": { + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_host": { + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_toolchains": { + "bzlFile": "@@rules_nodejs~//nodejs/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", + "attributes": { + "user_node_repository_name": "nodejs" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_nodejs~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_nodejs~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, "@@rules_rust~//crate_universe:extensions.bzl%crate": { "general": { "bzlTransitiveDigest": "4lIaNLyT0gNCOhOnhsVcgj3dS+knwLZwl7K4bfAT5bc=", @@ -1086,7 +2138,7 @@ "@@score_toolchains_gcc~//extentions:gcc.bzl%gcc": { "general": { "bzlTransitiveDigest": "625W04EMFCSpzHutpEkupks7tjaCN8GaZyYPK67p5KE=", - "usagesDigest": "ITF9M8VqfYU63yBH4D5y5q8pgd2GZu1lIeiQ9M+kAcM=", + "usagesDigest": "bQcFm4UqgmBZVysOitRrDrsX66mKkQfbUuQFjCkte4s=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, @@ -1141,6 +2193,88 @@ ] ] } + }, + "@@toolchains_protoc~//protoc:extensions.bzl%protoc": { + "general": { + "bzlTransitiveDigest": "HnmcD4ia7/1ZuQnymt4OGHXrW62MmIgwCtHByGQ7LQs=", + "usagesDigest": "O+YuVi860/vLKzxMOc++W/Xz0BfA32zfTYh+XJsmAnM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "toolchains_protoc_hub.linux_aarch_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "linux-aarch_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.linux_ppcle_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "linux-ppcle_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.linux_s390_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "linux-s390_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.linux_x86_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "linux-x86_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.osx_aarch_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "osx-aarch_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.osx_x86_64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "osx-x86_64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub.win64": { + "bzlFile": "@@toolchains_protoc~//protoc/private:prebuilt_protoc_toolchain.bzl", + "ruleClassName": "prebuilt_protoc_repo", + "attributes": { + "platform": "win64", + "version": "v25.3" + } + }, + "toolchains_protoc_hub": { + "bzlFile": "@@toolchains_protoc~//protoc/private:protoc_toolchains.bzl", + "ruleClassName": "protoc_toolchains_repo", + "attributes": { + "user_repository_name": "toolchains_protoc_hub" + } + }, + "com_google_protobuf": { + "bzlFile": "@@toolchains_protoc~//protoc:toolchain.bzl", + "ruleClassName": "_google_protobuf_alias_repo", + "attributes": { + "alias_to": "toolchains_protoc_hub.osx_aarch_64" + } + } + }, + "recordedRepoMappingEntries": [] + } } } } diff --git a/score/mw/com/BUILD b/score/mw/com/BUILD index 2cccd003..85f4833a 100644 --- a/score/mw/com/BUILD +++ b/score/mw/com/BUILD @@ -11,8 +11,8 @@ # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* load("@score-baselibs//bazel:unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx") -load("//score/mw:common_features.bzl", "COMPILER_WARNING_FEATURES") load("@score-baselibs//score/quality/clang_tidy:extra_checks.bzl", "clang_tidy_extra_checks") +load("//score/mw:common_features.bzl", "COMPILER_WARNING_FEATURES") cc_library( name = "com_error_domain", @@ -82,9 +82,9 @@ cc_library( ], deps = [ "@score-baselibs//score/filesystem", + "@score-baselibs//score/language/futurecpp", "@score-baselibs//score/memory:string_literal", "@score-baselibs//score/mw/log", - "@score-baselibs//score/language/futurecpp", ], ) diff --git a/score/mw/com/example/ipc_bridge/BUILD b/score/mw/com/example/ipc_bridge/BUILD index d41503d6..402d261e 100644 --- a/score/mw/com/example/ipc_bridge/BUILD +++ b/score/mw/com/example/ipc_bridge/BUILD @@ -25,9 +25,9 @@ cc_binary( deps = [ ":sample_sender_receiver", "//score/mw/com", - "@score-baselibs//score/mw/log", - "@score-baselibs//score/language/futurecpp", "@boost.program_options", + "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) diff --git a/score/mw/com/impl/BUILD b/score/mw/com/impl/BUILD index dfbe8c19..f444af9f 100644 --- a/score/mw/com/impl/BUILD +++ b/score/mw/com/impl/BUILD @@ -43,8 +43,8 @@ cc_library( implementation_deps = [ ":error", "//score/mw/com/impl/plumbing", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], tags = ["FFI"], visibility = [ @@ -98,11 +98,11 @@ cc_library( ":proxy_event_base", ":proxy_event_binding", ":runtime", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing:event", "//score/mw/com/impl/tracing:proxy_event_tracing", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -121,12 +121,12 @@ cc_library( ":skeleton_base", ":skeleton_event_base", ":skeleton_event_binding", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing:event", "//score/mw/com/impl/plumbing:sample_allocatee_ptr", "//score/mw/com/impl/tracing:skeleton_event_tracing", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -142,11 +142,11 @@ cc_library( deps = [ ":skeleton_event", ":skeleton_field_base", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing:field", "//score/mw/com/impl/plumbing:sample_allocatee_ptr", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -182,9 +182,9 @@ cc_library( deps = [ ":proxy_event", ":proxy_event_binding", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing:field", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -200,10 +200,10 @@ cc_library( deps = [ ":flag_owner", ":skeleton_event_binding", - "@score-baselibs//score/result", "//score/mw/com/impl/tracing:skeleton_event_tracing", "//score/mw/com/impl/tracing:skeleton_event_tracing_data", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -219,9 +219,9 @@ cc_library( deps = [ ":error", ":skeleton_event_base", - "@score-baselibs//score/result", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -289,9 +289,9 @@ cc_library( ":find_service_handle", ":find_service_handler", ":runtime", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -313,9 +313,9 @@ cc_library( ":proxy_base", ":proxy_event_binding", ":sample_reference_tracker", - "@score-baselibs//score/language/safecpp/scoped_function:scope", "//score/mw/com/impl/tracing:proxy_event_tracing_data", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/scoped_function:scope", ], ) @@ -348,10 +348,10 @@ cc_library( ], deps = [ ":binding_type", - "@score-baselibs//score/memory/shared:i_shared_memory_resource", - "@score-baselibs//score/result", "//score/mw/com/impl/configuration", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared:i_shared_memory_resource", + "@score-baselibs//score/result", ], ) @@ -373,10 +373,10 @@ cc_library( ], deps = [ ":binding_type", - "@score-baselibs//score/result", "//score/mw/com/impl/plumbing:sample_allocatee_ptr", "//score/mw/com/impl/tracing:skeleton_event_tracing_data", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -425,11 +425,11 @@ cc_library( ":sample_reference_tracker", ":scoped_event_receive_handler", ":subscription_state", - "@score-baselibs//score/result", "//score/mw/com/impl/configuration", "//score/mw/com/impl/plumbing:sample_ptr", "//score/mw/com/impl/tracing:i_tracing_runtime", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -531,9 +531,9 @@ cc_library( ], deps = [ ":error", - "@score-baselibs//score/result", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -720,8 +720,8 @@ cc_library( ":i_service_discovery", ":instance_identifier", ":instance_specifier", - "@score-baselibs//score/result", "@googletest//:gtest", + "@score-baselibs//score/result", ], ) @@ -739,9 +739,6 @@ cc_library( ":instance_specifier", ":runtime_interfaces", ":service_discovery", - "@score-baselibs//score/concurrency:long_running_threads_container", - "@score-baselibs//score/memory:any_string_view", - "@score-baselibs//score/memory/shared:types", "//score/mw/com:runtime_configuration", "//score/mw/com/impl:event_receive_handler", "//score/mw/com/impl/configuration", @@ -749,8 +746,11 @@ cc_library( "//score/mw/com/impl/tracing:tracing_runtime", "//score/mw/com/impl/tracing/configuration:tracing_filter_config", "//score/mw/com/impl/tracing/configuration:tracing_filter_config_parser", - "@score-baselibs//score/mw/log", + "@score-baselibs//score/concurrency:long_running_threads_container", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory:any_string_view", + "@score-baselibs//score/memory/shared:types", + "@score-baselibs//score/mw/log", ], ) @@ -760,8 +760,8 @@ cc_library( hdrs = ["sample_reference_tracker.h"], features = COMPILER_WARNING_FEATURES, implementation_deps = [ - "@score-baselibs//score/language/safecpp/safe_math", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/safe_math", ], tags = ["FFI"], visibility = [ @@ -810,9 +810,9 @@ cc_test( deps = [ ":impl", ":runtime", + "@googletest//:gtest_main", "@score-baselibs//score/language/safecpp/coverage_termination_handler", "@score-baselibs//score/mw/log", - "@googletest//:gtest_main", ], ) @@ -825,8 +825,8 @@ cc_gtest_unit_test( ":service_discovery_client_mock", "//score/mw/com/impl/bindings/lola:runtime_mock", "//score/mw/com/impl/configuration/test:configuration_store", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -876,7 +876,6 @@ cc_gtest_unit_test( deps = [ ":runtime", ":runtime_mock", - "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", "//score/mw/com/impl/bindings/lola:runtime_mock", "//score/mw/com/impl/configuration", "//score/mw/com/impl/tracing:tracing_runtime", @@ -884,6 +883,7 @@ cc_gtest_unit_test( "//score/mw/com/impl/tracing/configuration:proxy_event_trace_point_type", "//score/mw/com/impl/tracing/configuration:skeleton_event_trace_point_type", "//score/mw/com/impl/tracing/configuration:tracing_filter_config", + "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", "@score-baselibs//score/mw/log", ], ) @@ -935,10 +935,6 @@ cc_test( ":runtime_mock", ":service_discovery_mock", ":service_element_map", - "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/os/mocklib:mman_mock", - "@score-baselibs//score/os/mocklib:stat_mock", "//score/mw/com:types", "//score/mw/com/impl/bindings/lola:runtime_mock", "//score/mw/com/impl/bindings/lola/test_doubles", @@ -953,9 +949,13 @@ cc_test( "//score/mw/com/impl/test:binding_factory_resources", "//score/mw/com/impl/test:proxy_resources", "//score/mw/com/impl/tracing:tracing_test_resources", - "@score-baselibs//score/mw/log", "@googletest//:gtest_main", + "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/os/mocklib:mman_mock", + "@score-baselibs//score/os/mocklib:stat_mock", ], ) diff --git a/score/mw/com/impl/bindings/lola/BUILD b/score/mw/com/impl/bindings/lola/BUILD index e058c2ee..8768b370 100644 --- a/score/mw/com/impl/bindings/lola/BUILD +++ b/score/mw/com/impl/bindings/lola/BUILD @@ -26,11 +26,11 @@ cc_library( ":proxy", ":runtime", ":skeleton", - "@score-baselibs//score/concurrency", "//score/mw/com/impl/configuration", "//score/mw/com/message_passing", - "@score-baselibs//score/mw/log", + "@score-baselibs//score/concurrency", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -125,14 +125,14 @@ cc_library( visibility = ["//score/mw/com/impl/plumbing:__pkg__"], deps = [ ":i_runtime", - "@score-baselibs//score/concurrency:executor", - "@score-baselibs//score/concurrency:long_running_threads_container", - "@score-baselibs//score/memory/shared", "//score/mw/com/impl/bindings/lola/messaging", "//score/mw/com/impl/bindings/lola/service_discovery/client:service_discovery_client", "//score/mw/com/impl/bindings/lola/tracing:tracing_runtime", - "@score-baselibs//score/mw/log", + "@score-baselibs//score/concurrency:executor", + "@score-baselibs//score/concurrency:long_running_threads_container", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared", + "@score-baselibs//score/mw/log", ], ) @@ -263,13 +263,6 @@ cc_library( ":shm_path_builder", ":transaction_log_registration_guard", ":type_erased_sample_ptrs_guard", - "@score-baselibs//score/language/safecpp/safe_math", - "@score-baselibs//score/filesystem", - "@score-baselibs//score/memory/shared", - "@score-baselibs//score/memory/shared:lock_file", - "@score-baselibs//score/memory/shared:new_delete_delegate_resource", - "@score-baselibs//score/memory/shared/flock:exclusive_flock_mutex", - "@score-baselibs//score/memory/shared/flock:flock_mutex_and_lock", "//score/mw/com/impl:instance_identifier", "//score/mw/com/impl:runtime", "//score/mw/com/impl:skeleton_binding", @@ -278,6 +271,13 @@ cc_library( "//score/mw/com/impl/plumbing:sample_allocatee_ptr", "//score/mw/com/impl/tracing:skeleton_event_tracing", "//score/mw/com/impl/util:arithmetic_utils", + "@score-baselibs//score/filesystem", + "@score-baselibs//score/language/safecpp/safe_math", + "@score-baselibs//score/memory/shared", + "@score-baselibs//score/memory/shared:lock_file", + "@score-baselibs//score/memory/shared:new_delete_delegate_resource", + "@score-baselibs//score/memory/shared/flock:exclusive_flock_mutex", + "@score-baselibs//score/memory/shared/flock:flock_mutex_and_lock", ], ) @@ -323,18 +323,6 @@ cc_library( ":transaction_log_id", ":transaction_log_registration_guard", ":transaction_log_rollback_executor", - "@score-baselibs//score/language/safecpp/safe_math", - "@score-baselibs//score/filesystem", - "@score-baselibs//score/memory/shared", - "@score-baselibs//score/memory/shared:lock_file", - "@score-baselibs//score/memory/shared:pointer_arithmetic_util", - "@score-baselibs//score/memory/shared/flock:flock_mutex_and_lock", - "@score-baselibs//score/memory/shared/flock:shared_flock_mutex", - "@score-baselibs//score/os:errno_logging", - "@score-baselibs//score/os:fcntl", - "@score-baselibs//score/os:glob", - "@score-baselibs//score/os:unistd", - "@score-baselibs//score/result", "//score/mw/com/impl:generic_proxy_event_binding", "//score/mw/com/impl:instance_identifier", "//score/mw/com/impl:instance_specifier", @@ -347,7 +335,19 @@ cc_library( "//score/mw/com/impl/configuration", "//score/mw/com/impl/plumbing:sample_ptr", "//score/mw/com/impl/tracing:i_tracing_runtime", + "@score-baselibs//score/filesystem", + "@score-baselibs//score/language/safecpp/safe_math", + "@score-baselibs//score/memory/shared", + "@score-baselibs//score/memory/shared:lock_file", + "@score-baselibs//score/memory/shared:pointer_arithmetic_util", + "@score-baselibs//score/memory/shared/flock:flock_mutex_and_lock", + "@score-baselibs//score/memory/shared/flock:shared_flock_mutex", "@score-baselibs//score/mw/log", + "@score-baselibs//score/os:errno_logging", + "@score-baselibs//score/os:fcntl", + "@score-baselibs//score/os:glob", + "@score-baselibs//score/os:unistd", + "@score-baselibs//score/result", ], ) @@ -519,8 +519,8 @@ cc_library( tags = ["FFI"], visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ - "@score-baselibs//score/memory/shared:atomic_indirector", "//score/mw/com/impl/configuration", + "@score-baselibs//score/memory/shared:atomic_indirector", ], ) @@ -617,8 +617,8 @@ cc_library( visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ ":transaction_log_slot", - "@score-baselibs//score/memory/shared", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared", ], ) @@ -637,18 +637,18 @@ cc_library( hdrs = ["transaction_log_set.h"], features = COMPILER_WARNING_FEATURES, implementation_deps = [ - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], tags = ["FFI"], visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ ":transaction_log", ":transaction_log_id", - "@score-baselibs//score/containers:dynamic_array", - "@score-baselibs//score/result", "//score/mw/com/impl/configuration", "//score/mw/com/impl/util:copyable_atomic", + "@score-baselibs//score/containers:dynamic_array", + "@score-baselibs//score/result", ], ) @@ -663,11 +663,11 @@ cc_library( ":shared_data_structures", ":transaction_log_id", ":transaction_log_set", - "@score-baselibs//score/result", "//score/mw/com/impl:runtime", "//score/mw/com/impl/bindings/lola:runtime", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/result", ], ) @@ -761,8 +761,8 @@ cc_gtest_unit_test( features = COMPILER_WARNING_FEATURES, deps = [ ":proxy", - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl/bindings/lola/test:proxy_event_test_resources", + "@score-baselibs//score/memory:any_string_view", ], ) @@ -789,18 +789,18 @@ cc_unit_test( "-aborts_upon_exception", ], visibility = [ - "@score-baselibs//score/memory:__pkg__", "//score/mw/com/impl/bindings/lola:__subpackages__", + "@score-baselibs//score/memory:__pkg__", ], deps = [ - "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@googletest//:gtest", + "@googletest//:gtest_main", "@score-baselibs//score/containers:dynamic_array", + "@score-baselibs//score/language/futurecpp:futurecpp_test_support", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", "@score-baselibs//score/memory/shared:fake_memory_resources", "@score-baselibs//score/memory/shared:polymorphic_offset_ptr_allocator", "@score-baselibs//score/mw/log", - "@googletest//:gtest", - "@googletest//:gtest_main", - "@score-baselibs//score/language/futurecpp:futurecpp_test_support", ], ) @@ -816,16 +816,16 @@ cc_test( ], tags = ["unit"], deps = [ - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/containers:dynamic_array", - "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", - "@score-baselibs//score/memory/shared:new_delete_delegate_resource", "//score/mw/com/impl:instance_specifier", "//score/mw/com/impl/bindings/lola:event_data_control", "//score/mw/com/impl/bindings/lola:event_data_control_composite", "//score/mw/com/impl/bindings/lola/test_doubles:fake_memory_resource", "@googletest//:gtest_main", + "@score-baselibs//score/containers:dynamic_array", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", + "@score-baselibs//score/memory/shared:new_delete_delegate_resource", ], ) @@ -834,14 +834,14 @@ cc_gtest_unit_test( srcs = ["event_data_control_composite_test.cpp"], features = COMPILER_WARNING_FEATURES, deps = [ - "@score-baselibs//score/containers:dynamic_array", - "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", - "@score-baselibs//score/memory/shared:new_delete_delegate_resource", "//score/mw/com/impl:instance_specifier", "//score/mw/com/impl/bindings/lola:event_data_control", "//score/mw/com/impl/bindings/lola:event_data_control_composite", "//score/mw/com/impl/bindings/lola/test_doubles:fake_memory_resource", + "@score-baselibs//score/containers:dynamic_array", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", + "@score-baselibs//score/memory/shared:new_delete_delegate_resource", ], ) @@ -855,12 +855,12 @@ cc_test( tags = ["unit"], deps = [ ":skeleton", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", "//score/mw/com/impl/bindings/lola/test:skeleton_test_resources", "//score/mw/com/impl/bindings/lola/test:transaction_log_test_resources", "//score/mw/com/impl/bindings/mock_binding", "//score/mw/com/impl/tracing:tracing_runtime_mock", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", ], ) @@ -871,12 +871,12 @@ cc_gtest_unit_test( deps = [ ":proxy", ":shm_path_builder_mock", - "@score-baselibs//score/memory:any_string_view", - "@score-baselibs//score/result", "//score/mw/com/impl/bindings/lola/test:proxy_event_test_resources", "//score/mw/com/impl/bindings/lola/test:transaction_log_test_resources", "//score/mw/com/impl/bindings/mock_binding", "//score/mw/com/impl/configuration", + "@score-baselibs//score/memory:any_string_view", + "@score-baselibs//score/result", ], ) @@ -910,11 +910,11 @@ cc_gtest_unit_test( ":runtime_mock", ":skeleton", ":transaction_log_rollback_executor", - "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", "//score/mw/com/impl:runtime", "//score/mw/com/impl:runtime_mock", "//score/mw/com/impl/bindings/lola/messaging:mock", "//score/mw/com/impl/bindings/lola/test:transaction_log_test_resources", + "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", ], ) @@ -984,8 +984,8 @@ cc_gtest_unit_test( features = COMPILER_WARNING_FEATURES, deps = [ ":event_subscription_control", - "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", "//score/mw/com/impl/bindings/lola/test:proxy_event_test_resources", + "@score-baselibs//score/memory/shared:atomic_indirector_mock_binding", ], ) @@ -1009,8 +1009,8 @@ cc_gtest_unit_test( features = COMPILER_WARNING_FEATURES, deps = [ ":runtime", - "@score-baselibs//score/os/mocklib:unistd_mock", "//score/mw/com/message_passing:mock", + "@score-baselibs//score/os/mocklib:unistd_mock", ], ) diff --git a/score/mw/com/impl/bindings/lola/messaging/BUILD b/score/mw/com/impl/bindings/lola/messaging/BUILD index b263b306..693628bd 100644 --- a/score/mw/com/impl/bindings/lola/messaging/BUILD +++ b/score/mw/com/impl/bindings/lola/messaging/BUILD @@ -97,13 +97,13 @@ cc_library( ":i_message_passing_service", ":i_notify_event_handler", ":thread_abstraction", - "@score-baselibs//score/concurrency:thread_pool", - "@score-baselibs//score/os:errno_logging", "//score/mw/com/impl:scoped_event_receive_handler", "//score/mw/com/impl/bindings/lola:element_fq_id", "//score/mw/com/impl/configuration", "//score/mw/com/message_passing", + "@score-baselibs//score/concurrency:thread_pool", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/os:errno_logging", ], ) @@ -145,10 +145,10 @@ cc_library( ":i_message_passing_control", ":i_message_passing_service", ":i_notify_event_handler", + "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", "@score-baselibs//score/os:errno_logging", "@score-baselibs//score/os:unistd", - "@score-baselibs//score/mw/log", - "@score-baselibs//score/language/futurecpp", ], ) @@ -246,12 +246,12 @@ cc_test( ":mock", ":notify_event_handler_facade", ":notify_event_handler_mock", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/os/mocklib:unistd_mock", "//score/mw/com/message_passing", "//score/mw/com/message_passing:mock", - "@score-baselibs//score/mw/log", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/os/mocklib:unistd_mock", ], ) @@ -273,11 +273,11 @@ cc_test( deps = [ ":mock", ":notify_event_handler", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", "//score/mw/com/message_passing", "//score/mw/com/message_passing:mock", - "@score-baselibs//score/mw/log", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/mw/log", ], ) diff --git a/score/mw/com/impl/bindings/lola/messaging/messages/BUILD b/score/mw/com/impl/bindings/lola/messaging/messages/BUILD index 4c291e9f..16250d3c 100644 --- a/score/mw/com/impl/bindings/lola/messaging/messages/BUILD +++ b/score/mw/com/impl/bindings/lola/messaging/messages/BUILD @@ -29,10 +29,10 @@ cc_library( tags = ["FFI"], visibility = ["//score/mw/com/impl/bindings/lola/messaging:__pkg__"], deps = [ - "@score-baselibs//score/os:unistd", "//score/mw/com/impl/bindings/lola:element_fq_id", "//score/mw/com/message_passing", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/os:unistd", ], ) diff --git a/score/mw/com/impl/bindings/lola/service_discovery/BUILD b/score/mw/com/impl/bindings/lola/service_discovery/BUILD index 7763eec4..11af32bb 100644 --- a/score/mw/com/impl/bindings/lola/service_discovery/BUILD +++ b/score/mw/com/impl/bindings/lola/service_discovery/BUILD @@ -26,9 +26,9 @@ cc_library( tags = ["FFI"], visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ + "//score/mw/com/impl:enriched_instance_identifier", "@score-baselibs//score/filesystem", "@score-baselibs//score/result", - "//score/mw/com/impl:enriched_instance_identifier", ], ) @@ -38,10 +38,10 @@ cc_gtest_unit_test( features = COMPILER_WARNING_FEATURES, deps = [ ":flag_file", - "@score-baselibs//score/filesystem:mock", - "@score-baselibs//score/os:unistd", "//score/mw/com/impl/bindings/lola/service_discovery/test:service_discovery_client_test_resources", "//score/mw/com/impl/configuration/test:configuration_store", + "@score-baselibs//score/filesystem:mock", + "@score-baselibs//score/os:unistd", ], ) @@ -57,10 +57,10 @@ cc_library( ":flag_file", ":known_instances_container", ":quality_aware_container", + "//score/mw/com/impl:instance_identifier", "@score-baselibs//score/filesystem", "@score-baselibs//score/os/utils/inotify:inotify_instance", "@score-baselibs//score/os/utils/inotify:inotify_watch_descriptor", - "//score/mw/com/impl:instance_identifier", ], ) @@ -70,10 +70,10 @@ cc_gtest_unit_test( features = COMPILER_WARNING_FEATURES, deps = [ ":flag_file_crawler", - "@score-baselibs//score/filesystem:mock", - "@score-baselibs//score/os/utils/inotify:inotify_instance_mock", "//score/mw/com/impl/bindings/lola/service_discovery/test:service_discovery_client_test_resources", "//score/mw/com/impl/configuration/test:configuration_store", + "@score-baselibs//score/filesystem:mock", + "@score-baselibs//score/os/utils/inotify:inotify_instance_mock", ], ) diff --git a/score/mw/com/impl/bindings/lola/service_discovery/client/BUILD b/score/mw/com/impl/bindings/lola/service_discovery/client/BUILD index 14ee60c4..c9df6096 100644 --- a/score/mw/com/impl/bindings/lola/service_discovery/client/BUILD +++ b/score/mw/com/impl/bindings/lola/service_discovery/client/BUILD @@ -21,10 +21,6 @@ cc_library( tags = ["FFI"], visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ - "@score-baselibs//score/concurrency:executor", - "@score-baselibs//score/filesystem", - "@score-baselibs//score/os/utils/inotify:inotify_instance", - "@score-baselibs//score/os/utils/inotify:inotify_instance_impl", "//score/mw/com/impl:error", "//score/mw/com/impl:i_service_discovery_client", "//score/mw/com/impl/bindings/lola/service_discovery:flag_file", @@ -32,7 +28,11 @@ cc_library( "//score/mw/com/impl/bindings/lola/service_discovery:known_instances_container", "//score/mw/com/impl/bindings/lola/service_discovery:lola_service_instance_identifier", "//score/mw/com/impl/bindings/lola/service_discovery:quality_aware_container", + "@score-baselibs//score/concurrency:executor", + "@score-baselibs//score/filesystem", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/os/utils/inotify:inotify_instance", + "@score-baselibs//score/os/utils/inotify:inotify_instance_impl", ], ) @@ -51,7 +51,6 @@ cc_gtest_unit_test( "//score/mw/com/impl/bindings/lola/service_discovery/client:__pkg__", ], deps = [ - "@score-baselibs//score/os/utils/inotify:inotify_instance_mock", "//score/mw/com/impl:handle_type", "//score/mw/com/impl:i_service_discovery", "//score/mw/com/impl/bindings/lola/service_discovery/client:service_discovery_client", @@ -60,6 +59,7 @@ cc_gtest_unit_test( "//score/mw/com/impl/bindings/lola/service_discovery/test:service_discovery_client_test_fixtures", "//score/mw/com/impl/bindings/lola/service_discovery/test:service_discovery_client_test_resources", "//score/mw/com/impl/configuration/test:configuration_store", + "@score-baselibs//score/os/utils/inotify:inotify_instance_mock", ], ) diff --git a/score/mw/com/impl/bindings/lola/service_discovery/test/BUILD b/score/mw/com/impl/bindings/lola/service_discovery/test/BUILD index 0511cce1..c284b893 100644 --- a/score/mw/com/impl/bindings/lola/service_discovery/test/BUILD +++ b/score/mw/com/impl/bindings/lola/service_discovery/test/BUILD @@ -20,11 +20,11 @@ cc_library( features = COMPILER_WARNING_FEATURES, visibility = ["//score/mw/com/impl/bindings/lola:__subpackages__"], deps = [ - "@score-baselibs//score/filesystem", "//score/mw/com/impl:find_service_handle", "//score/mw/com/impl:find_service_handler", "//score/mw/com/impl:handle_type", "@googletest//:gtest_main", + "@score-baselibs//score/filesystem", "@score-baselibs//score/language/futurecpp", ], ) @@ -39,6 +39,10 @@ cc_library( deps = [ ":file_system_guard", ":service_discovery_client_test_resources", + "//score/mw/com/impl:handle_type", + "//score/mw/com/impl:i_service_discovery", + "//score/mw/com/impl/bindings/lola/service_discovery/client:service_discovery_client", + "@googletest//:gtest_main", "@score-baselibs//score/concurrency:executor_mock", "@score-baselibs//score/concurrency:long_running_threads_container", "@score-baselibs//score/filesystem", @@ -46,10 +50,6 @@ cc_library( "@score-baselibs//score/os/utils/inotify:inotify_instance_facade", "@score-baselibs//score/os/utils/inotify:inotify_instance_mock", "@score-baselibs//score/os/utils/inotify:inotify_watch_descriptor", - "//score/mw/com/impl:handle_type", - "//score/mw/com/impl:i_service_discovery", - "//score/mw/com/impl/bindings/lola/service_discovery/client:service_discovery_client", - "@googletest//:gtest_main", ], ) diff --git a/score/mw/com/impl/bindings/lola/test/BUILD b/score/mw/com/impl/bindings/lola/test/BUILD index 8323f0ac..6d0bd544 100644 --- a/score/mw/com/impl/bindings/lola/test/BUILD +++ b/score/mw/com/impl/bindings/lola/test/BUILD @@ -20,9 +20,6 @@ cc_library( features = COMPILER_WARNING_FEATURES, visibility = ["//score/mw/com/impl:__subpackages__"], deps = [ - "@score-baselibs//score/memory/shared:shared_memory_factory_mock", - "@score-baselibs//score/os/mocklib:fcntl_mock", - "@score-baselibs//score/os/mocklib:unistd_mock", "//score/mw/com/impl:runtime", "//score/mw/com/impl:runtime_mock", "//score/mw/com/impl:service_discovery_mock", @@ -32,6 +29,9 @@ cc_library( "//score/mw/com/impl/bindings/lola/test_doubles", "@googletest//:gtest_main", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared:shared_memory_factory_mock", + "@score-baselibs//score/os/mocklib:fcntl_mock", + "@score-baselibs//score/os/mocklib:unistd_mock", ], ) @@ -45,12 +45,6 @@ cc_library( "//score/mw/com/impl/bindings/lola:__subpackages__", ], deps = [ - "@score-baselibs//score/filesystem:mock", - "@score-baselibs//score/memory/shared:shared_memory_factory_mock", - "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", - "@score-baselibs//score/memory/shared:shared_memory_resource_mock", - "@score-baselibs//score/os/mocklib:fcntl_mock", - "@score-baselibs//score/os/mocklib:unistd_mock", "//score/mw/com/impl:runtime_mock", "//score/mw/com/impl/bindings/lola:partial_restart_path_builder_mock", "//score/mw/com/impl/bindings/lola:runtime_mock", @@ -60,7 +54,13 @@ cc_library( "//score/mw/com/impl/configuration", "//score/mw/com/impl/tracing:tracing_runtime_mock", "@googletest//:gtest_main", + "@score-baselibs//score/filesystem:mock", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared:shared_memory_factory_mock", + "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", + "@score-baselibs//score/memory/shared:shared_memory_resource_mock", + "@score-baselibs//score/os/mocklib:fcntl_mock", + "@score-baselibs//score/os/mocklib:unistd_mock", ], ) @@ -92,11 +92,11 @@ cc_library( visibility = ["//score/mw/com/impl:__subpackages__"], deps = [ ":skeleton_test_resources", - "@score-baselibs//score/filesystem", "//score/mw/com/impl:find_service_handle", "//score/mw/com/impl:find_service_handler", "//score/mw/com/impl:handle_type", "@googletest//:gtest_main", + "@score-baselibs//score/filesystem", "@score-baselibs//score/language/futurecpp", ], ) @@ -134,12 +134,12 @@ cc_test( ], deps = [ ":skeleton_test_resources", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/os/mocklib:acl_mock", - "@score-baselibs//score/os/mocklib:fcntl_mock", "//score/mw/com/impl:runtime", "//score/mw/com/impl/bindings/mock_binding", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/os/mocklib:acl_mock", + "@score-baselibs//score/os/mocklib:fcntl_mock", ], ) @@ -157,9 +157,6 @@ cc_test( ], deps = [ ":skeleton_test_resources", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/filesystem", - "@score-baselibs//score/os/mocklib:fcntl_mock", "//score/mw/com/impl:runtime_mock", "//score/mw/com/impl:service_discovery_mock", "//score/mw/com/impl/bindings/lola:runtime_mock", @@ -168,6 +165,9 @@ cc_test( "//score/mw/com/impl/bindings/mock_binding/tracing:tracing_runtime", "//score/mw/com/impl/tracing:tracing_runtime_mock", "@googletest//:gtest_main", + "@score-baselibs//score/filesystem", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/os/mocklib:fcntl_mock", ], ) @@ -183,8 +183,6 @@ cc_test( deps = [ ":proxy_event_test_resources", ":service_discovery_test_resources", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/filesystem", "//score/mw/com/impl:proxy_base", "//score/mw/com/impl/bindings/lola:proxy", "//score/mw/com/impl/bindings/lola:runtime_mock", @@ -192,5 +190,7 @@ cc_test( "//score/mw/com/impl/bindings/lola/test_doubles", "//score/mw/com/impl/configuration/test:configuration_store", "@googletest//:gtest_main", + "@score-baselibs//score/filesystem", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", ], ) diff --git a/score/mw/com/impl/bindings/lola/test_doubles/BUILD b/score/mw/com/impl/bindings/lola/test_doubles/BUILD index b311db4f..58ee83b3 100644 --- a/score/mw/com/impl/bindings/lola/test_doubles/BUILD +++ b/score/mw/com/impl/bindings/lola/test_doubles/BUILD @@ -40,10 +40,10 @@ cc_library( visibility = ["//score/mw/com/impl:__subpackages__"], deps = [ ":fake_memory_resource", - "@score-baselibs//score/memory/shared", - "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", "//score/mw/com/impl/bindings/lola:event", "//score/mw/com/impl/bindings/lola:shared_data_structures", "//score/mw/com/impl/bindings/lola:skeleton", + "@score-baselibs//score/memory/shared", + "@score-baselibs//score/memory/shared:shared_memory_resource_heap_allocator_mock", ], ) diff --git a/score/mw/com/impl/bindings/lola/tracing/BUILD b/score/mw/com/impl/bindings/lola/tracing/BUILD index 3a043e36..ed5a9b02 100644 --- a/score/mw/com/impl/bindings/lola/tracing/BUILD +++ b/score/mw/com/impl/bindings/lola/tracing/BUILD @@ -24,17 +24,17 @@ cc_library( "//score/mw/com/impl/plumbing:__subpackages__", ], deps = [ - "@score-baselibs//score/language/safecpp/safe_math", - "@score-baselibs//score/language/safecpp/scoped_function:move_only_scoped_function", - "@score-baselibs//score/containers:dynamic_array", - "@score-baselibs//score/memory/shared:i_shared_memory_resource", "//score/mw/com/impl:service_element_type", "//score/mw/com/impl/configuration", "//score/mw/com/impl/tracing:i_tracing_runtime_binding", "//score/mw/com/impl/tracing:service_element_tracing_data", "//score/mw/com/impl/tracing/configuration:service_element_instance_identifier_view", - "@score-baselibs//score/mw/log", + "@score-baselibs//score/containers:dynamic_array", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/safe_math", + "@score-baselibs//score/language/safecpp/scoped_function:move_only_scoped_function", + "@score-baselibs//score/memory/shared:i_shared_memory_resource", + "@score-baselibs//score/mw/log", ], ) @@ -47,8 +47,8 @@ cc_gtest_unit_test( ], deps = [ ":tracing_runtime", - "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", "//score/mw/com/impl/bindings/lola/test:skeleton_test_resources", + "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", ], ) diff --git a/score/mw/com/impl/configuration/BUILD b/score/mw/com/impl/configuration/BUILD index 14a6cd18..b32ae4e6 100644 --- a/score/mw/com/impl/configuration/BUILD +++ b/score/mw/com/impl/configuration/BUILD @@ -1,3 +1,5 @@ +load("@score-baselibs//bazel:unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx") + # ******************************************************************************* # Copyright (c) 2025 Contributors to the Eclipse Foundation # @@ -11,7 +13,6 @@ # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* load("//bazel/tools:json_schema_validator.bzl", "validate_json_schema_test") -load("@score-baselibs//bazel:unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx") load("//score/mw:common_features.bzl", "COMPILER_WARNING_FEATURES") validate_json_schema_test( @@ -216,9 +217,9 @@ cc_library( ":lola_field_instance_deployment", ":lola_service_instance_id", ":quality_type", - "@score-baselibs//score/json", "//score/mw/com/impl:error", "//score/mw/com/impl:service_element_type", + "@score-baselibs//score/json", "@score-baselibs//score/language/futurecpp", ], ) @@ -268,8 +269,8 @@ cc_library( ":configuration_common_resources", ":service_version_type", "@score-baselibs//score/json", - "@score-baselibs//score/memory:string_literal", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory:string_literal", ], ) @@ -347,8 +348,8 @@ cc_library( ":someip_field_instance_deployment", ":someip_service_instance_id", "@score-baselibs//score/json", - "@score-baselibs//score/result", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/result", ], ) @@ -363,8 +364,8 @@ cc_library( tags = ["FFI"], deps = [ ":configuration_common_resources", - "@score-baselibs//score/json", "//score/mw/com/impl:service_element_type", + "@score-baselibs//score/json", ], ) @@ -384,8 +385,8 @@ cc_library( tags = ["FFI"], deps = [ "@score-baselibs//score/json", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -424,8 +425,8 @@ cc_test( tags = ["unit"], deps = [ ":config_parser", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", ], ) @@ -440,10 +441,10 @@ cc_test( tags = ["unit"], deps = [ ":configuration_common_resources", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/json", "@googletest//:gtest_main", + "@score-baselibs//score/json", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", ], ) diff --git a/score/mw/com/impl/plumbing/BUILD b/score/mw/com/impl/plumbing/BUILD index 45795156..15595688 100644 --- a/score/mw/com/impl/plumbing/BUILD +++ b/score/mw/com/impl/plumbing/BUILD @@ -41,10 +41,10 @@ cc_library( "//score/mw/com/impl/plumbing:__subpackages__", ], deps = [ - "@score-baselibs//score/concurrency:executor", "//score/mw/com/impl:instance_identifier", "//score/mw/com/impl/bindings/lola", "//score/mw/com/impl/configuration", + "@score-baselibs//score/concurrency:executor", "@score-baselibs//score/language/futurecpp", ], ) @@ -172,11 +172,11 @@ cc_library( "//score/mw/com/impl/plumbing:__subpackages__", ], deps = [ - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl:proxy_base", "//score/mw/com/impl/bindings/lola", "//score/mw/com/impl/configuration", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory:any_string_view", ], ) @@ -236,11 +236,11 @@ cc_library( features = COMPILER_WARNING_FEATURES, tags = ["FFI"], deps = [ - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl:skeleton_base", "//score/mw/com/impl/bindings/lola", "//score/mw/com/impl/configuration", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory:any_string_view", ], ) @@ -361,7 +361,7 @@ cc_library( hdrs = ["proxy_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_proxy_binding_factory", @@ -376,7 +376,7 @@ cc_library( hdrs = ["proxy_event_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_proxy_event_binding_factory", @@ -391,7 +391,7 @@ cc_library( hdrs = ["proxy_field_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_proxy_field_binding_factory", @@ -406,7 +406,7 @@ cc_library( hdrs = ["skeleton_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_skeleton_binding_factory", @@ -421,7 +421,7 @@ cc_library( hdrs = ["skeleton_event_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_skeleton_event_binding_factory", @@ -436,7 +436,7 @@ cc_library( hdrs = ["skeleton_field_binding_factory_mock.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":i_skeleton_field_binding_factory", @@ -654,8 +654,6 @@ cc_test( ":event", ":plumbing", ":proxy_binding_factory_mock", - "@score-baselibs//score/language/safecpp/coverage_termination_handler", - "@score-baselibs//score/os/mocklib:fcntl_mock", "//score/mw/com/impl:runtime_mock", "//score/mw/com/impl/bindings/lola:runtime_mock", "//score/mw/com/impl/bindings/lola/messaging:mock", @@ -664,8 +662,10 @@ cc_test( "//score/mw/com/impl/bindings/mock_binding", "//score/mw/com/impl/test:dummy_instance_identifier_builder", "//score/mw/com/message_passing:mock", - "@score-baselibs//score/mw/log", "@googletest//:gtest_main", + "@score-baselibs//score/language/safecpp/coverage_termination_handler", + "@score-baselibs//score/mw/log", + "@score-baselibs//score/os/mocklib:fcntl_mock", ], ) diff --git a/score/mw/com/impl/rust/BUILD b/score/mw/com/impl/rust/BUILD index 56654ba9..a15f55a8 100644 --- a/score/mw/com/impl/rust/BUILD +++ b/score/mw/com/impl/rust/BUILD @@ -38,7 +38,7 @@ cc_library( hdrs = ["bridge_macros.h"], features = COMPILER_WARNING_FEATURES, visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ "//score/mw/com:types", @@ -53,7 +53,7 @@ cc_library( hdrs = ["proxy_bridge_macros.h"], deprecation = "Please change your dependency to //score/mw/com/impl/rust:bridge_macros", visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only # "@ddad//platform/aas:__subpackages__", ], deps = [":bridge_macros"], @@ -99,7 +99,7 @@ rust_library( name = "mw_com", srcs = ["mw_com.rs"], visibility = [ - "//visibility:public", # platform_only + "//visibility:public", # platform_only ], deps = [ ":common", diff --git a/score/mw/com/impl/tracing/BUILD b/score/mw/com/impl/tracing/BUILD index 6e3ce7b0..0b0b809d 100644 --- a/score/mw/com/impl/tracing/BUILD +++ b/score/mw/com/impl/tracing/BUILD @@ -41,9 +41,9 @@ cc_library( deps = [ ":service_element_tracing_data", ":type_erased_sample_ptr", - "@score-baselibs//score/memory/shared", "//score/mw/com/impl/tracing/configuration:service_element_instance_identifier_view", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared", ] + select({ "//score/mw/com/flags:tracing_library_real": [ "@score-baselibs//score/analysis/tracing/library/generic_trace_api", @@ -165,8 +165,8 @@ cc_library( "//score/mw/com/impl:proxy_event_binding", "//score/mw/com/impl:runtime", "//score/mw/com/impl/tracing/configuration:service_element_instance_identifier_view", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -192,7 +192,6 @@ cc_library( ":i_tracing_runtime_binding", ":service_element_tracing_data", ":type_erased_sample_ptr", - "@score-baselibs//score/memory/shared:i_shared_memory_resource", "//score/mw/com/impl:binding_type", "//score/mw/com/impl/tracing/configuration:proxy_event_trace_point_type", "//score/mw/com/impl/tracing/configuration:proxy_field_trace_point_type", @@ -200,6 +199,7 @@ cc_library( "//score/mw/com/impl/tracing/configuration:skeleton_event_trace_point_type", "//score/mw/com/impl/tracing/configuration:skeleton_field_trace_point_type", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/memory/shared:i_shared_memory_resource", ] + select({ "//score/mw/com/flags:tracing_library_real": [ "@score-baselibs//score/analysis/tracing/library/generic_trace_api", @@ -284,8 +284,8 @@ cc_gtest_unit_test( deps = [ ":tracing_runtime", ":tracing_test_resources", - "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", "//score/mw/com/impl/bindings/mock_binding/tracing:tracing_runtime", + "@score-baselibs//score/analysis/tracing/library/generic_trace_api/mocks:trace_library_mock", ], ) @@ -347,9 +347,9 @@ cc_gtest_unit_test( deps = [ ":common_event_tracing", ":tracing_runtime_mock", - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl/configuration/test:configuration_store", "//score/mw/com/impl/tracing/test:runtime_mock_guard", + "@score-baselibs//score/memory:any_string_view", ], ) @@ -360,11 +360,11 @@ cc_gtest_unit_test( deps = [ ":skeleton_event_tracing", ":tracing_runtime_mock", - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl/bindings/mock_binding", "//score/mw/com/impl/configuration/test:configuration_store", "//score/mw/com/impl/tracing/configuration:tracing_filter_config_mock", "//score/mw/com/impl/tracing/test:runtime_mock_guard", + "@score-baselibs//score/memory:any_string_view", ], ) diff --git a/score/mw/com/impl/tracing/configuration/BUILD b/score/mw/com/impl/tracing/configuration/BUILD index 506d0de5..affea46f 100644 --- a/score/mw/com/impl/tracing/configuration/BUILD +++ b/score/mw/com/impl/tracing/configuration/BUILD @@ -1,3 +1,5 @@ +load("@score-baselibs//bazel:unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx") + # ******************************************************************************* # Copyright (c) 2025 Contributors to the Eclipse Foundation # @@ -11,7 +13,6 @@ # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* load("//bazel/tools:json_schema_validator.bzl", "validate_json_schema_test") -load("@score-baselibs//bazel:unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx") load("//score/mw:common_features.bzl", "COMPILER_WARNING_FEATURES") validate_json_schema_test( @@ -110,8 +111,8 @@ cc_library( visibility = ["//score/mw/com/impl:__subpackages__"], deps = [ ":hash_helper_utility", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -125,8 +126,8 @@ cc_library( deps = [ ":hash_helper_for_service_element_and_se_view", "//score/mw/com/impl:service_element_type", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -140,8 +141,8 @@ cc_library( deps = [ ":hash_helper_for_service_element_and_se_view", "//score/mw/com/impl:service_element_type", - "@score-baselibs//score/mw/log", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/mw/log", ], ) @@ -226,10 +227,10 @@ cc_library( visibility = ["//score/mw/com/impl:__subpackages__"], deps = [ ":tracing_filter_config", - "@score-baselibs//score/json", "//score/mw/com/impl:service_element_type", "//score/mw/com/impl/configuration", "//score/mw/com/impl/tracing:trace_error", + "@score-baselibs//score/json", "@score-baselibs//score/language/futurecpp", ], ) @@ -295,8 +296,8 @@ cc_gtest_unit_test( ], deps = [ ":tracing_filter_config", - "@score-baselibs//score/memory:any_string_view", "//score/mw/com/impl/configuration", + "@score-baselibs//score/memory:any_string_view", ], ) diff --git a/score/mw/com/message_passing/BUILD b/score/mw/com/message_passing/BUILD index 2faa6d5a..a1bc944f 100644 --- a/score/mw/com/message_passing/BUILD +++ b/score/mw/com/message_passing/BUILD @@ -21,11 +21,11 @@ alias( }), tags = ["FFI"], visibility = [ + "//platform/aas/pas/logging:__subpackages__", "//score/mw/com/impl:__subpackages__", "//score/mw/com/message_passing/test:__pkg__", "@score-baselibs//score/mw/log:__subpackages__", "@score-baselibs//score/mw/log/detail/data_router:__pkg__", - "//platform/aas/pas/logging:__subpackages__", ], ) @@ -113,11 +113,11 @@ cc_library( ":serializer", ":shared_properties", "@score-baselibs//score/concurrency", + "@score-baselibs//score/language/futurecpp", "@score-baselibs//score/memory:pmr_ring_buffer", "@score-baselibs//score/os:mqueue", "@score-baselibs//score/os:stat", "@score-baselibs//score/os:unistd", - "@score-baselibs//score/language/futurecpp", ], ) @@ -148,13 +148,13 @@ cc_library( ":message", ":shared_properties", "@score-baselibs//score/concurrency", + "@score-baselibs//score/language/futurecpp", "@score-baselibs//score/memory:pmr_ring_buffer", "@score-baselibs//score/os:fcntl", "@score-baselibs//score/os:unistd", "@score-baselibs//score/os/qnx:channel", "@score-baselibs//score/os/qnx:dispatch", "@score-baselibs//score/os/qnx:iofunc", - "@score-baselibs//score/language/futurecpp", ], ) @@ -171,8 +171,8 @@ cc_library( "//score/mw/com/message_passing:__subpackages__", ], deps = [ - "@score-baselibs//score/os:errno", "@score-baselibs//score/language/futurecpp", + "@score-baselibs//score/os:errno", ], ) @@ -187,9 +187,9 @@ cc_library( ], features = COMPILER_WARNING_FEATURES, visibility = [ + "//platform/aas/pas/logging:__subpackages__", "//score/mw/com/impl:__subpackages__", "@score-baselibs//score/mw/log:__subpackages__", - "//platform/aas/pas/logging:__subpackages__", ], deps = [ ":interface", @@ -247,13 +247,13 @@ cc_library( target_compatible_with = ["@platforms//os:qnx"], deps = [ ":message", + "@score-baselibs//score/language/futurecpp", "@score-baselibs//score/memory:pmr_ring_buffer", "@score-baselibs//score/os:fcntl", "@score-baselibs//score/os:unistd", "@score-baselibs//score/os/qnx:channel", "@score-baselibs//score/os/qnx:dispatch", "@score-baselibs//score/os/qnx:iofunc", - "@score-baselibs//score/language/futurecpp", ], ) diff --git a/third_party/boost/BUILD b/third_party/boost/BUILD index b0b1302f..82ccce81 100644 --- a/third_party/boost/BUILD +++ b/third_party/boost/BUILD @@ -14,19 +14,17 @@ alias( name = "container", actual = "@boost//:container", - visibility =["//visibility:public"], + visibility = ["//visibility:public"], ) - alias( name = "interprocess", actual = "@boost//:interprocess", - visibility =["//visibility:public"], + visibility = ["//visibility:public"], ) - alias( name = "program_options", actual = "@boost//:program_options", - visibility =["//visibility:public"], -) \ No newline at end of file + visibility = ["//visibility:public"], +)