peridot/vendor/github.com/antchfx/htmlquery/BUILD.bazel

19 lines
511 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 = "htmlquery",
srcs = [
"cache.go",
"query.go",
],
importmap = "peridot.resf.org/vendor/github.com/antchfx/htmlquery",
importpath = "github.com/antchfx/htmlquery",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/antchfx/xpath",
"//vendor/github.com/golang/groupcache/lru",
"@org_golang_x_net//html",
"@org_golang_x_net//html/charset",
],
)