load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "compatibility", srcs = [ "compatibility.go", "constants.go", "doc.go", "types.go", ], importpath = "edge-infra.dev/pkg/edge/compatibility", visibility = ["//visibility:public"], deps = ["@com_github_hashicorp_go_version//:go-version"], ) go_test( name = "compatibility_test", srcs = ["compatibility_test.go"], embed = [":compatibility"], deps = ["@com_github_stretchr_testify//assert"], )