load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "x509", srcs = ["x509.go"], importpath = "edge-infra.dev/pkg/lib/crypto/certs/x509", visibility = ["//visibility:public"], deps = [ "//pkg/lib/crypto/certs/pem", "@io_k8s_client_go//util/keyutil", ], ) go_test( name = "x509_test", srcs = ["x509_test.go"], embed = [":x509"], deps = ["@com_github_stretchr_testify//assert"], )