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

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "x25519",
     5      srcs = ["x25519.go"],
     6      importpath = "github.com/lestrrat-go/jwx/v2/x25519",
     7      visibility = ["//visibility:public"],
     8      deps = ["@org_golang_x_crypto//curve25519"],
     9  )
    10  
    11  go_test(
    12      name = "x25519_test",
    13      srcs = ["x25519_test.go"],
    14      deps = [
    15          ":x25519",
    16          "@com_github_stretchr_testify//assert",
    17      ],
    18  )
    19  
    20  alias(
    21      name = "go_default_library",
    22      actual = ":x25519",
    23      visibility = ["//visibility:public"],
    24  )