peridot/vendor/github.com/hashicorp/hcl/BUILD.bazel
2022-07-07 22:13:21 +02:00

21 lines
580 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "hcl",
srcs = [
"decoder.go",
"hcl.go",
"lex.go",
"parse.go",
],
importmap = "peridot.resf.org/vendor/github.com/hashicorp/hcl",
importpath = "github.com/hashicorp/hcl",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/hashicorp/hcl/hcl/ast",
"//vendor/github.com/hashicorp/hcl/hcl/parser",
"//vendor/github.com/hashicorp/hcl/hcl/token",
"//vendor/github.com/hashicorp/hcl/json/parser",
],
)