github.com/lestrrat-go/jwx/v2@v2.0.21/internal/keyconv/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "keyconv",
     5      srcs = ["keyconv.go"],
     6      importpath = "github.com/lestrrat-go/jwx/v2/internal/keyconv",
     7      visibility = ["//:__subpackages__"],
     8      deps = [
     9          "//jwk",
    10          "@com_github_lestrrat_go_blackmagic//:go_default_library",
    11          "@org_golang_x_crypto//ed25519",
    12      ],
    13  )
    14  
    15  go_test(
    16      name = "keyconv_test",
    17      srcs = ["keyconv_test.go"],
    18      deps = [
    19          ":keyconv",
    20          "//internal/jwxtest",
    21          "//jwa",
    22          "//jwk",
    23          "@com_github_stretchr_testify//assert",
    24      ],
    25  )
    26  
    27  alias(
    28      name = "go_default_library",
    29      actual = ":keyconv",
    30      visibility = ["//:__subpackages__"],
    31  )