mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-14 17:51:25 +00:00
25 lines
744 B
Python
25 lines
744 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go-toml",
|
|
srcs = [
|
|
"decode.go",
|
|
"doc.go",
|
|
"errors.go",
|
|
"localtime.go",
|
|
"marshaler.go",
|
|
"strict.go",
|
|
"types.go",
|
|
"unmarshaler.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/pelletier/go-toml/v2",
|
|
importpath = "github.com/pelletier/go-toml/v2",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/pelletier/go-toml/v2/internal/characters",
|
|
"//vendor/github.com/pelletier/go-toml/v2/internal/danger",
|
|
"//vendor/github.com/pelletier/go-toml/v2/internal/tracker",
|
|
"//vendor/github.com/pelletier/go-toml/v2/unstable",
|
|
],
|
|
)
|