aboutsummaryrefslogtreecommitdiff
path: root/MODULE.bazel
blob: 22124d9c1c2b97cf5ba44bf3fd04547aede97ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")