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

19 lines
573 B
Python

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",
],
)