| # MODULE.bazel | |
| module( | |
| name = "rules_cc_resources", | |
| version = "0.1.0", | |
| ) | |
| bazel_dep(name = "rules_cc", version = "0.1.1") | |
| bazel_dep(name = "rules_python", version = "1.4.1") | |
| # Setup Python toolchain (required by rules_python) | |
| python = use_extension("@rules_python//python:extensions.bzl", "python") | |
| python.toolchain( | |
| name = "python_toolchain", | |
| python_version = "3.11", | |
| ) | |
| use_repo(python, "python_toolchain") |