-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathBUILD.bazel
More file actions
25 lines (24 loc) · 1.09 KB
/
BUILD.bazel
File metadata and controls
25 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "pkgutil",
srcs = [
"fs_utils.go",
"image_utils.go",
"tar_utils.go",
"transport_builder.go",
],
importpath = "github.com/GoogleContainerTools/container-structure-test/internal/pkgutil",
visibility = ["//:__subpackages__"],
deps = [
"@com_github_google_go_containerregistry//pkg/authn:go_default_library",
"@com_github_google_go_containerregistry//pkg/name:go_default_library",
"@com_github_google_go_containerregistry//pkg/v1:go_default_library",
"@com_github_google_go_containerregistry//pkg/v1/daemon:go_default_library",
"@com_github_google_go_containerregistry//pkg/v1/mutate:go_default_library",
"@com_github_google_go_containerregistry//pkg/v1/remote:go_default_library",
"@com_github_google_go_containerregistry//pkg/v1/tarball:go_default_library",
"@com_github_moby_sys_sequential//:go_default_library",
"@com_github_pkg_errors//:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
],
)