MODULE.bazel 867 B

123456789101112131415161718192021222324252627282930313233
  1. bazel_dep(name = "bazel_skylib", version = "1.5.0")
  2. bazel_dep(name = "googletest", dev_dependency = True)
  3. local_path_override(
  4. module_name = "googletest",
  5. path = "external/googletest",
  6. )
  7. bazel_dep(name = "re2", dev_dependency = True)
  8. local_path_override(
  9. module_name = "re2",
  10. path = "external/re2",
  11. )
  12. bazel_dep(name = "effcee", dev_dependency = True)
  13. local_path_override(
  14. module_name = "effcee",
  15. path = "external/effcee",
  16. )
  17. bazel_dep(name = "rules_python",
  18. version = "0.34.0")
  19. # https://rules-python.readthedocs.io/en/stable/toolchains.html#library-modules-with-dev-only-python-usage
  20. python = use_extension(
  21. "@rules_python//python/extensions:python.bzl",
  22. "python",
  23. dev_dependency = True
  24. )
  25. python.toolchain(python_version = "3.12",
  26. is_default = True,
  27. ignore_root_user_error = True)