load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "pallet", srcs = [ "image.go", "index.go", "metadata.go", "options.go", "pallet.go", ], importpath = "edge-infra.dev/pkg/f8n/warehouse/pallet", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse", "//pkg/f8n/warehouse/capability", "//pkg/f8n/warehouse/cluster", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/layer", "//pkg/f8n/warehouse/oci/match", "//pkg/f8n/warehouse/oci/mutate", "@com_github_google_go_containerregistry//pkg/v1:pkg", "@com_github_google_go_containerregistry//pkg/v1/empty", "@com_github_google_go_containerregistry//pkg/v1/mutate", "@com_github_google_go_containerregistry//pkg/v1/types", "@org_uber_go_multierr//:multierr", ], )