blob: bfb8dd6b94fc457884eafe90d64d1e36b573a809 [file] [log] [blame]
Jan Schärc53a9fc2025-04-14 11:09:27 +00001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "osimage",
5 srcs = [
6 "osimage.go",
7 "types.go",
8 ],
9 importpath = "source.monogon.dev/osbase/oci/osimage",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//osbase/oci",
13 "//osbase/structfs",
14 "@com_github_klauspost_compress//zstd",
15 ],
16)