...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "updatemanifests",
5 srcs = ["update_manifests.go"],
6 importpath = "edge-infra.dev/pkg/edge/edgeadmin/commands/cfg/updatemanifests",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//pkg/edge/component/build/image",
10 "//pkg/edge/component/build/updatemanifests",
11 "//pkg/edge/constants",
12 "//pkg/edge/edgecli",
13 "//pkg/edge/edgecli/flagutil",
14 "//pkg/edge/gitops/fns/edgerelease",
15 "//pkg/lib/build/bazel",
16 "//pkg/lib/cli/command",
17 "//pkg/lib/cli/rags",
18 "//pkg/lib/errors",
19 "@com_github_google_go_containerregistry//pkg/crane",
20 "@com_github_google_go_containerregistry//pkg/name",
21 ],
22)
View as plain text