peridot/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/BUILD.bazel
2022-07-07 22:13:21 +02:00

16 lines
577 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "versioning",
srcs = ["versioning.go"],
importmap = "peridot.resf.org/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning",
importpath = "k8s.io/apimachinery/pkg/runtime/serializer/versioning",
visibility = ["//visibility:public"],
deps = [
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured",
"//vendor/k8s.io/apimachinery/pkg/runtime",
"//vendor/k8s.io/apimachinery/pkg/runtime/schema",
"//vendor/k8s.io/klog/v2:klog",
],
)