peridot/vendor/github.com/hashicorp/hcl/json/parser/BUILD.bazel

19 lines
573 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "parser",
srcs = [
"flatten.go",
"parser.go",
],
importmap = "peridot.resf.org/vendor/github.com/hashicorp/hcl/json/parser",
importpath = "github.com/hashicorp/hcl/json/parser",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/hashicorp/hcl/hcl/ast",
"//vendor/github.com/hashicorp/hcl/hcl/token",
"//vendor/github.com/hashicorp/hcl/json/scanner",
"//vendor/github.com/hashicorp/hcl/json/token",
],
)