-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathMODULE.bazel
More file actions
112 lines (102 loc) · 2.44 KB
/
Copy pathMODULE.bazel
File metadata and controls
112 lines (102 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
module(
name = "cel-cpp",
)
bazel_dep(
name = "bazel_skylib",
version = "1.9.0",
)
bazel_dep(
name = "googleapis",
version = "0.0.0-20241220-5e258e33.bcr.1",
repo_name = "com_google_googleapis",
)
bazel_dep(
name = "googleapis-cc",
version = "1.0.0",
)
bazel_dep(
name = "rules_cc",
version = "0.2.14",
)
bazel_dep(
name = "rules_java",
version = "8.6.1",
)
bazel_dep(
name = "rules_proto",
version = "7.1.0",
)
bazel_dep(
name = "rules_python",
version = "1.6.3",
)
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(
name = "protobuf",
version = "34.1",
repo_name = "com_google_protobuf",
)
bazel_dep(
name = "abseil-cpp",
version = "20260107.0",
repo_name = "com_google_absl",
)
bazel_dep(
name = "googletest",
version = "1.17.0.bcr.2",
repo_name = "com_google_googletest",
)
bazel_dep(
name = "google_benchmark",
version = "1.9.2",
repo_name = "com_github_google_benchmark",
)
bazel_dep(
name = "re2",
version = "2025-11-05.bcr.1",
repo_name = "com_googlesource_code_re2",
)
bazel_dep(
name = "flatbuffers",
version = "25.9.23",
repo_name = "com_github_google_flatbuffers",
)
bazel_dep(
name = "cel-spec",
version = "0.25.1",
repo_name = "com_google_cel_spec",
)
bazel_dep(
name = "platforms",
version = "1.0.0",
)
bazel_dep(
name = "antlr4-cpp-runtime",
version = "4.13.2.bcr.2",
)
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",
)
http_jar = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_jar")
ANTLR4_VERSION = "4.13.2"
http_jar(
name = "antlr4_jar",
sha256 = "eae2dfa119a64327444672aff63e9ec35a20180dc5b8090b7a6ab85125df4d76",
urls = ["https://www.antlr.org/download/antlr-" + ANTLR4_VERSION + "-complete.jar"],
)
bazel_dep(
name = "yaml-cpp",
version = "0.9.0",
)
_CEL_POLICY_TAG = "ebfb2361f47080af643c14cf4da4c2b551a68740"
_CEL_POLICY_SHA = "ea69e9c6b7bd5bc37d358148aebd2fcca38bc7c45a23feb635de72338e0327c1"
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "cel_policy",
sha256 = _CEL_POLICY_SHA,
strip_prefix = "cel-policy-%s" % _CEL_POLICY_TAG,
url = "https://github.com/cel-expr/cel-policy/archive/%s.tar.gz" % _CEL_POLICY_TAG,
)