peridot/vendor/github.com/ProtonMail/gopenpgp/v2/helper/BUILD.bazel

25 lines
732 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "helper",
srcs = [
"cleartext.go",
2024-10-16 11:40:38 +00:00
"decrypt_check.go",
2022-07-07 20:11:50 +00:00
"helper.go",
"key.go",
2024-10-16 11:40:38 +00:00
"message.go",
2022-07-07 20:11:50 +00:00
"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",
2024-10-16 11:40:38 +00:00
"//vendor/github.com/ProtonMail/gopenpgp/v2/internal",
2022-07-07 20:11:50 +00:00
"//vendor/github.com/pkg/errors",
2024-10-16 11:40:38 +00:00
"@com_github_protonmail_go_crypto//openpgp/packet",
2022-07-07 20:11:50 +00:00
],
)