• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2024 The Abseil Authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# https://bazel.build/external/overview#bzlmod
16
17module(
18    name = "abseil-cpp",
19    version = "20240116.0",
20    compatibility_level = 1,
21)
22
23# Only direct dependencies need to be listed below.
24# Please keep the versions in sync with the versions in the WORKSPACE file.
25
26bazel_dep(name = "bazel_skylib",
27          version = "1.5.0")
28
29bazel_dep(name = "google_benchmark",
30          version = "1.8.3",
31          repo_name = "com_github_google_benchmark",
32          dev_dependency = True)
33
34bazel_dep(name = "googletest",
35          version = "1.14.0.bcr.1",
36          repo_name = "com_google_googletest")
37
38bazel_dep(name = "platforms",
39          version = "0.0.8")
40