load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "build", srcs = ["version.go"], importpath = "edge-infra.dev/pkg/lib/build", visibility = ["//visibility:public"], deps = ["//pkg/lib/build/semver"], ) go_test( name = "build_test", srcs = ["version_test.go"], embed = [":build"], deps = [ "//pkg/lib/build/semver", "@com_github_stretchr_testify//assert", ], )