| Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| 2 | |
| 3 | go_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", |
| Tim Windelschmidt | 0974b22 | 2024-01-16 14:04:15 +0100 | [diff] [blame^] | 11 | "@com_github_docker_distribution//manifest/manifestlist", |
| 12 | "@com_github_docker_distribution//manifest/ocischema", |
| Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 13 | "@com_github_docker_distribution//manifest/schema2", |
| 14 | "@com_github_docker_distribution//reference", |
| 15 | "@com_github_opencontainers_go_digest//:go-digest", |
| 16 | "@org_golang_google_protobuf//encoding/prototext", |
| 17 | ], |
| 18 | ) |