35 lines
645 B
Python
35 lines
645 B
Python
load("@rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "cert",
|
|
srcs = [
|
|
"cert.go",
|
|
"chain.go",
|
|
],
|
|
importpath = "github.com/lestrrat-go/jwx/v3/cert",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//internal/base64",
|
|
"//internal/tokens",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "cert_test",
|
|
srcs = [
|
|
"cert_test.go",
|
|
"chain_test.go",
|
|
],
|
|
deps = [
|
|
":cert",
|
|
"//internal/jwxtest",
|
|
"@com_github_stretchr_testify//require",
|
|
],
|
|
)
|
|
|
|
alias(
|
|
name = "go_default_library",
|
|
actual = ":cert",
|
|
visibility = ["//visibility:public"],
|
|
)
|