1# Copyright 2024 The BoringSSL Authors 2# 3# Permission to use, copy, modify, and/or distribute this software for any 4# purpose with or without fee is hereby granted, provided that the above 5# copyright notice and this permission notice appear in all copies. 6# 7# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12# OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 15# When tagging a new periodic snapshot, bump the version here and then tag at 16# the revision where we bump the version. 17module( 18 name = "boringssl", 19 version = "0.20241209.0", 20 compatibility_level = 2, 21) 22 23# Periodically update the following dependencies to their latest versions 24# listed on https://registry.bazel.build/. When doing so, run 25# `bazelisk test ...` to update the hashes in MODULE.bazel.lock. 26 27# In principle, googletest is only needed for tests and could be a 28# dev_dependency. But it would then be impossible for downstream modules to run 29# BoringSSL's tests. The downstream module provides the toolchain, so we may 30# need to request they run tests when triaging issues. If 31# https://github.com/bazelbuild/bazel/issues/22187 is ever fixed, we can change 32# this. 33bazel_dep(name = "googletest", version = "1.15.2") 34 35bazel_dep(name = "platforms", version = "0.0.10") 36bazel_dep(name = "rules_cc", version = "0.1.0") 37bazel_dep(name = "rules_license", version = "1.0.0") 38