mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 14:11:25 +00:00
22 lines
604 B
Python
22 lines
604 B
Python
|
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",
|
||
|
],
|
||
|
)
|