mirror of
https://github.com/google/re2.git
synced 2025-10-14 02:17:38 +08:00

2025-08-12 will be the same as 2025-08-05 except for having some Bazel-related fixes and possibly the right files to automatically push an update to the Bazel Central Registry. Change-Id: I178dd5ab31eeb29c97d9f687cbe7553d02dca8cb Reviewed-on: https://code-review.googlesource.com/c/re2/+/63910 Reviewed-by: Russ Cox <rsc@swtch.com> Reviewed-by: Jeremy Kun <jkun@google.com>
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Copyright 2009 The RE2 Authors. All Rights Reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# Bazel (http://bazel.build/) MODULE file for RE2.
|
|
|
|
module(
|
|
name = "re2",
|
|
version = "2025-08-12",
|
|
compatibility_level = 1,
|
|
)
|
|
|
|
bazel_dep(name = "platforms", version = "1.0.0")
|
|
bazel_dep(name = "apple_support", version = "1.22.1")
|
|
bazel_dep(name = "rules_cc", version = "0.1.4")
|
|
bazel_dep(name = "abseil-cpp", version = "20250512.1")
|
|
bazel_dep(name = "rules_python", version = "1.5.1")
|
|
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
|
|
|
|
# This is a temporary hack for `x64_x86_windows`.
|
|
# TODO(junyer): Remove whenever no longer needed.
|
|
cc_configure = use_extension("@rules_cc//cc:extensions.bzl", "cc_configure_extension", dev_dependency = True)
|
|
use_repo(cc_configure, "local_config_cc")
|
|
|
|
# These dependencies will be ignored when the `re2` module is not
|
|
# the root module (or when `--ignore_dev_dependency` is enabled).
|
|
bazel_dep(name = "google_benchmark", version = "1.9.4", dev_dependency = True)
|
|
bazel_dep(name = "googletest", version = "1.17.0", dev_dependency = True)
|
|
bazel_dep(name = "abseil-py", version = "2.1.0", dev_dependency = True)
|