blob: 992a2f74fe4d284f1afafa2dd7988bea62580b20 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "toposort",
srcs = ["toposort.go"],
importpath = "source.monogon.dev/go/algorithm/toposort",
visibility = ["//visibility:public"],
)
go_test(
name = "toposort_test",
srcs = ["toposort_test.go"],
embed = [":toposort"],
)