2023-03-09 09:23:42 -05:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "semver",
|
|
|
|
srcs = ["semver.go"],
|
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/semver",
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
2023-07-25 08:20:25 -04:00
|
|
|
"//internal/compatibility",
|
2023-03-09 09:23:42 -05:00
|
|
|
"@org_golang_x_mod//semver",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "semver_test",
|
|
|
|
srcs = ["semver_test.go"],
|
|
|
|
embed = [":semver"],
|
|
|
|
deps = [
|
|
|
|
"@com_github_stretchr_testify//assert",
|
|
|
|
"@com_github_stretchr_testify//require",
|
2023-07-25 08:20:25 -04:00
|
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
2023-03-09 09:23:42 -05:00
|
|
|
],
|
|
|
|
)
|