mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
24 lines
531 B
Python
24 lines
531 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "yaml_v3",
|
||
|
srcs = [
|
||
|
"apic.go",
|
||
|
"decode.go",
|
||
|
"emitterc.go",
|
||
|
"encode.go",
|
||
|
"parserc.go",
|
||
|
"readerc.go",
|
||
|
"resolve.go",
|
||
|
"scannerc.go",
|
||
|
"sorter.go",
|
||
|
"writerc.go",
|
||
|
"yaml.go",
|
||
|
"yamlh.go",
|
||
|
"yamlprivateh.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/gopkg.in/yaml.v3",
|
||
|
importpath = "gopkg.in/yaml.v3",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|