blob: 636bc57216ae2fc7918bc4fb1ddcfc3f7a35effa [file] [log] [blame]
Lorenz Brun901c7322023-07-13 20:10:37 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "localregistry",
5 srcs = ["localregistry.go"],
6 importpath = "source.monogon.dev/metropolis/pkg/localregistry",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//metropolis/pkg/localregistry/spec",
10 "@com_github_docker_distribution//:distribution",
11 "@com_github_docker_distribution//manifest/schema2",
12 "@com_github_docker_distribution//reference",
13 "@com_github_opencontainers_go_digest//:go-digest",
14 "@org_golang_google_protobuf//encoding/prototext",
15 ],
16)