...

Text file src/edge-infra.dev/pkg/f8n/warehouse/pallet/BUILD.bazel

Documentation: edge-infra.dev/pkg/f8n/warehouse/pallet

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "pallet",
     5    srcs = [
     6        "image.go",
     7        "index.go",
     8        "metadata.go",
     9        "options.go",
    10        "pallet.go",
    11    ],
    12    importpath = "edge-infra.dev/pkg/f8n/warehouse/pallet",
    13    visibility = ["//visibility:public"],
    14    deps = [
    15        "//pkg/f8n/warehouse",
    16        "//pkg/f8n/warehouse/capability",
    17        "//pkg/f8n/warehouse/cluster",
    18        "//pkg/f8n/warehouse/oci",
    19        "//pkg/f8n/warehouse/oci/layer",
    20        "//pkg/f8n/warehouse/oci/match",
    21        "//pkg/f8n/warehouse/oci/mutate",
    22        "@com_github_google_go_containerregistry//pkg/v1:pkg",
    23        "@com_github_google_go_containerregistry//pkg/v1/empty",
    24        "@com_github_google_go_containerregistry//pkg/v1/mutate",
    25        "@com_github_google_go_containerregistry//pkg/v1/types",
    26        "@org_uber_go_multierr//:multierr",
    27    ],
    28)

View as plain text