load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "disk", srcs = ["disk.go"], importpath = "edge-infra.dev/pkg/f8n/warehouse/oci/cache/providers/disk", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/layout", "@com_github_google_go_containerregistry//pkg/name", ], ) go_test( name = "disk_test", srcs = ["disk_test.go"], embed = [":disk"], deps = [ "//pkg/f8n/warehouse/lift", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/layout", "//pkg/lib/build/bazel", "//pkg/lib/uuid", "//test/fixtures", "@com_github_google_go_containerregistry//pkg/name", "@com_github_stretchr_testify//assert", ], )