| 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"], |
| Tim Windelschmidt | 9f21f53 | 2024-05-07 15:14:20 +0200 | [diff] [blame] | 6 | importpath = "source.monogon.dev/metropolis/test/localregistry", |
| Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 7 | visibility = ["//visibility:public"], |
| 8 | deps = [ |
| Tim Windelschmidt | 9f21f53 | 2024-05-07 15:14:20 +0200 | [diff] [blame] | 9 | "//metropolis/test/localregistry/spec", |
| Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 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", |
| Serge Bazanski | f779b8f | 2024-04-17 16:30:55 +0200 | [diff] [blame] | 16 | "@io_bazel_rules_go//go/runfiles:go_default_library", |
| Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 17 | "@org_golang_google_protobuf//encoding/prototext", |
| 18 | ], |
| 19 | ) |