aboutsummaryrefslogtreecommitdiff
path: root/MODULE.bazel
diff options
context:
space:
mode:
authorCassandra Beckley <cbeckley@google.com>2024-04-30 09:19:25 -0700
committerGitHub <noreply@github.com>2024-04-30 12:19:25 -0400
commitaea1f4d62ca9ee2f44b5393e98e175e200a22e8e (patch)
tree89398c8d37e412280ccd83447c0478e9a56e36e6 /MODULE.bazel
parent19b4aa87af25cb4ee779a071409732f34bfc305c (diff)
downloadeffcee-aea1f4d62ca9ee2f44b5393e98e175e200a22e8e.tar.gz
Use bzlmod (#64)
* Use bzlmod Use the new Bazel module system. This should hopefully help fix the broken re2 import in SPIRV-Tools. * Use bazel 7.0.2 in Kokoro * Ignore root user error
Diffstat (limited to 'MODULE.bazel')
-rw-r--r--MODULE.bazel17
1 files changed, 17 insertions, 0 deletions
diff --git a/MODULE.bazel b/MODULE.bazel
new file mode 100644
index 0000000..22124d9
--- /dev/null
+++ b/MODULE.bazel
@@ -0,0 +1,17 @@
+module(name = "effcee")
+
+bazel_dep(name = "rules_python", version = "0.31.0")
+python = use_extension("@rules_python//python/extensions:python.bzl", "python")
+python.toolchain(
+ configure_coverage_tool = False,
+ ignore_root_user_error = True,
+ python_version = "3.11",
+)
+
+bazel_dep(
+ name = "googletest",
+ version = "1.14.0",
+ dev_dependency = True,
+)
+
+bazel_dep(name = "re2", version = "2024-04-01")