github.com/lestrrat-go/jwx/v2@v2.0.21/jwt/internal/types/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3 go_library( 4 name = "types", 5 srcs = [ 6 "date.go", 7 "string.go", 8 ], 9 importpath = "github.com/lestrrat-go/jwx/v2/jwt/internal/types", 10 visibility = ["//jwt:__subpackages__"], 11 deps = ["//internal/json"], 12 ) 13 14 go_test( 15 name = "types_test", 16 srcs = [ 17 "date_test.go", 18 "string_test.go", 19 ], 20 deps = [ 21 ":types", 22 "//internal/json", 23 "//jwt", 24 "@com_github_stretchr_testify//assert", 25 ], 26 ) 27 28 alias( 29 name = "go_default_library", 30 actual = ":types", 31 visibility = ["//jwt:__subpackages__"], 32 )