peridot/vendor/github.com/ProtonMail/gopenpgp/v2/helper/BUILD.bazel
2024-10-16 13:40:38 +02:00

25 lines
732 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "helper",
srcs = [
"cleartext.go",
"decrypt_check.go",
"helper.go",
"key.go",
"message.go",
"mobile.go",
"mobile_stream.go",
"sign_detached.go",
],
importmap = "peridot.resf.org/vendor/github.com/ProtonMail/gopenpgp/v2/helper",
importpath = "github.com/ProtonMail/gopenpgp/v2/helper",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/ProtonMail/gopenpgp/v2/crypto",
"//vendor/github.com/ProtonMail/gopenpgp/v2/internal",
"//vendor/github.com/pkg/errors",
"@com_github_protonmail_go_crypto//openpgp/packet",
],
)