| Jan Schär | c53a9fc | 2025-04-14 11:09:27 +0000 | [diff] [blame^] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| 2 | |||||
| 3 | go_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 | ) | ||||