aboutsummaryrefslogtreecommitdiff
path: root/MODULE.bazel
diff options
context:
space:
mode:
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")