Revision 36f24afcc7e0176c2b6f199429b8fec09e5e5d14 authored by juerg on 25 March 2024, 11:09:32 UTC, committed by Copybara-Service on 25 March 2024, 11:10:34 UTC
1 parent b4ade8c
Raw File
BUILD.bazel
# Description:
#   Tink (https://github.com/google/tink) is a small crypto library that
#   provides a safe, simple, agile and fast way to accomplish some common
#   crypto tasks.
package(default_visibility = ["//:__subpackages__"])

licenses(["notice"])

exports_files([
    "LICENSE",
    "README.md",
    "__init__.py",
])

filegroup(
    name = "tink_version",
    srcs = ["tink_version.bzl"],
    visibility = ["//visibility:public"],
)
back to top