mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 14:11:25 +00:00
15 lines
475 B
Python
15 lines
475 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "tracker",
|
|
srcs = [
|
|
"key.go",
|
|
"seen.go",
|
|
"tracker.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/pelletier/go-toml/v2/internal/tracker",
|
|
importpath = "github.com/pelletier/go-toml/v2/internal/tracker",
|
|
visibility = ["//vendor/github.com/pelletier/go-toml/v2:__subpackages__"],
|
|
deps = ["//vendor/github.com/pelletier/go-toml/v2/unstable"],
|
|
)
|