load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "name", srcs = ["name.go"], importpath = "edge-infra.dev/pkg/f8n/warehouse/oci/name", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse", "//pkg/f8n/warehouse/lift", "//pkg/f8n/warehouse/oci", "@com_github_google_go_containerregistry//pkg/name", "@com_github_google_go_containerregistry//pkg/v1:pkg", ], ) go_test( name = "name_test", srcs = ["name_test.go"], embed = [":name"], deps = [ "//pkg/f8n/warehouse/cluster", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/layer", "//pkg/f8n/warehouse/pallet", "@com_github_stretchr_testify//assert", ], )