1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "warehouse", 5 srcs = ["registry.go"], 6 importpath = "edge-infra.dev/test/f2/x/warehouse", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "//pkg/f8n/warehouse/oci", 10 "//pkg/f8n/warehouse/oci/remote", 11 "//pkg/f8n/warehouse/whtest/registry", 12 "//test/f2", 13 "//test/f2/fctx", 14 "//test/f2/integration", 15 "@com_github_google_go_containerregistry//pkg/name", 16 ], 17)