|
| 1 | +module( |
| 2 | + name = "cel-cpp", |
| 3 | + version = "0.14.0", |
| 4 | + compatibility_level = 1, |
| 5 | +) |
| 6 | + |
| 7 | +bazel_dep( |
| 8 | + name = "bazel_skylib", |
| 9 | + version = "1.7.1", |
| 10 | +) |
| 11 | +bazel_dep( |
| 12 | + name = "googleapis", |
| 13 | + version = "0.0.0-20241220-5e258e33.bcr.1", |
| 14 | + repo_name = "com_google_googleapis", |
| 15 | +) |
| 16 | +bazel_dep( |
| 17 | + name = "googleapis-cc", |
| 18 | + version = "1.0.0", |
| 19 | +) |
| 20 | +bazel_dep( |
| 21 | + name = "rules_cc", |
| 22 | + version = "0.1.1", |
| 23 | +) |
| 24 | +bazel_dep( |
| 25 | + name = "rules_java", |
| 26 | + version = "7.6.5", |
| 27 | +) |
| 28 | +bazel_dep( |
| 29 | + name = "rules_proto", |
| 30 | + version = "7.0.2", |
| 31 | +) |
| 32 | +bazel_dep( |
| 33 | + name = "rules_python", |
| 34 | + version = "1.3.0", |
| 35 | +) |
| 36 | +bazel_dep( |
| 37 | + name = "protobuf", |
| 38 | + version = "30.2", |
| 39 | + repo_name = "com_google_protobuf", |
| 40 | +) |
| 41 | +bazel_dep( |
| 42 | + name = "abseil-cpp", |
| 43 | + version = "20250512.1", |
| 44 | + repo_name = "com_google_absl", |
| 45 | +) |
| 46 | +bazel_dep( |
| 47 | + name = "googletest", |
| 48 | + version = "1.16.0", |
| 49 | + repo_name = "com_google_googletest", |
| 50 | +) |
| 51 | +bazel_dep( |
| 52 | + name = "google_benchmark", |
| 53 | + version = "1.9.2", |
| 54 | + repo_name = "com_github_google_benchmark", |
| 55 | +) |
| 56 | +bazel_dep( |
| 57 | + name = "re2", |
| 58 | + version = "2024-07-02", |
| 59 | + repo_name = "com_googlesource_code_re2", |
| 60 | +) |
| 61 | +bazel_dep( |
| 62 | + name = "flatbuffers", |
| 63 | + version = "25.2.10", |
| 64 | + repo_name = "com_github_google_flatbuffers", |
| 65 | +) |
| 66 | +bazel_dep( |
| 67 | + name = "cel-spec", |
| 68 | + version = "0.24.0", |
| 69 | + repo_name = "com_google_cel_spec", |
| 70 | +) |
| 71 | + |
| 72 | +ANTLR4_VERSION = "4.13.2" |
| 73 | + |
| 74 | +bazel_dep( |
| 75 | + name = "antlr4-cpp-runtime", |
| 76 | + version = ANTLR4_VERSION, |
| 77 | +) |
| 78 | + |
| 79 | +python = use_extension("@rules_python//python/extensions:python.bzl", "python") |
| 80 | +python.toolchain( |
| 81 | + configure_coverage_tool = False, |
| 82 | + ignore_root_user_error = True, |
| 83 | + python_version = "3.11", |
| 84 | +) |
| 85 | + |
| 86 | +http_jar = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_jar") |
| 87 | + |
| 88 | +http_jar( |
| 89 | + name = "antlr4_jar", |
| 90 | + sha256 = "eae2dfa119a64327444672aff63e9ec35a20180dc5b8090b7a6ab85125df4d76", |
| 91 | + urls = ["https://www.antlr.org/download/antlr-" + ANTLR4_VERSION + "-complete.jar"], |
| 92 | +) |
0 commit comments