2024-03-14 21:42:12 +00:00
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.5.0")
|
|
|
|
|
|
|
|
bazel_dep(name = "googletest", dev_dependency = True)
|
|
|
|
local_path_override(
|
|
|
|
module_name = "googletest",
|
|
|
|
path = "external/googletest",
|
|
|
|
)
|
2024-06-17 15:18:20 +00:00
|
|
|
|
2024-06-24 18:17:34 +00:00
|
|
|
bazel_dep(name = "re2", dev_dependency = True)
|
|
|
|
local_path_override(
|
|
|
|
module_name = "re2",
|
|
|
|
path = "external/re2",
|
|
|
|
)
|
|
|
|
|
2024-06-18 17:52:50 +00:00
|
|
|
bazel_dep(name = "effcee", dev_dependency = True)
|
2024-06-17 15:18:20 +00:00
|
|
|
local_path_override(
|
2024-06-18 17:52:50 +00:00
|
|
|
module_name = "effcee",
|
|
|
|
path = "external/effcee",
|
2024-06-17 15:18:20 +00:00
|
|
|
)
|
2024-08-21 16:06:38 +00:00
|
|
|
|
|
|
|
bazel_dep(name = "rules_python",
|
|
|
|
version = "0.34.0")
|
|
|
|
|
|
|
|
# https://rules-python.readthedocs.io/en/stable/toolchains.html#library-modules-with-dev-only-python-usage
|
|
|
|
python = use_extension(
|
|
|
|
"@rules_python//python/extensions:python.bzl",
|
|
|
|
"python",
|
|
|
|
dev_dependency = True
|
|
|
|
)
|
|
|
|
|
|
|
|
python.toolchain(python_version = "3.12",
|
|
|
|
is_default = True,
|
|
|
|
ignore_root_user_error = True)
|