peridot/vendor/github.com/pelletier/go-toml/v2/unstable/BUILD.bazel

22 lines
604 B
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "unstable",
srcs = [
"ast.go",
"builder.go",
"doc.go",
"kind.go",
"parser.go",
"scanner.go",
"unmarshaler.go",
],
importmap = "peridot.resf.org/vendor/github.com/pelletier/go-toml/v2/unstable",
importpath = "github.com/pelletier/go-toml/v2/unstable",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/pelletier/go-toml/v2/internal/characters",
"//vendor/github.com/pelletier/go-toml/v2/internal/danger",
],
)