Upgrade bazel to 8.0.0.

Previously, we were using 8.0.0rc1.
In particular, this upgrade means we need to explicitly
import more rules, as they've been moved out of the core bazel repo.
This commit is contained in:
Cornelius Riemenschneider
2024-12-10 11:47:45 +01:00
parent 7dd10f72cb
commit 53ca5083a9
22 changed files with 42 additions and 5 deletions

View File

@@ -1,3 +1,5 @@
load("@rules_python//python:defs.bzl", "py_binary")
py_binary(
name = "codegen",
srcs = ["codegen.py"],

View File

@@ -1,3 +1,5 @@
load("@rules_python//python:defs.bzl", "py_library")
py_library(
name = "generators",
srcs = glob(["*.py"]),

View File

@@ -1,4 +1,5 @@
load("@codegen_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library")
py_library(
name = "lib",

View File

@@ -1,4 +1,5 @@
load("@codegen_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library")
py_library(
name = "loaders",

View File

@@ -1,4 +1,5 @@
load("@codegen_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library", "py_test")
py_library(
name = "utils",