mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
20 lines
564 B
Python
20 lines
564 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go-mime",
|
|
srcs = [
|
|
"encoding.go",
|
|
"parser.go",
|
|
"utf7Decoder.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/ProtonMail/go-mime",
|
|
importpath = "github.com/ProtonMail/go-mime",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/sirupsen/logrus",
|
|
"//vendor/golang.org/x/text/encoding",
|
|
"//vendor/golang.org/x/text/encoding/htmlindex",
|
|
"//vendor/golang.org/x/text/transform",
|
|
],
|
|
)
|