mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
21 lines
594 B
Python
21 lines
594 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "openpgp",
|
|
srcs = [
|
|
"canonical_text.go",
|
|
"keys.go",
|
|
"read.go",
|
|
"write.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/openpgp",
|
|
importpath = "golang.org/x/crypto/openpgp",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/golang.org/x/crypto/openpgp/armor",
|
|
"//vendor/golang.org/x/crypto/openpgp/errors",
|
|
"//vendor/golang.org/x/crypto/openpgp/packet",
|
|
"//vendor/golang.org/x/crypto/openpgp/s2k",
|
|
],
|
|
)
|