mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
511 B
Python
19 lines
511 B
Python
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",
|
|
],
|
|
)
|