mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
22 lines
562 B
Python
22 lines
562 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "xmlquery",
|
|
srcs = [
|
|
"cache.go",
|
|
"cached_reader.go",
|
|
"node.go",
|
|
"options.go",
|
|
"parse.go",
|
|
"query.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/antchfx/xmlquery",
|
|
importpath = "github.com/antchfx/xmlquery",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/antchfx/xpath",
|
|
"//vendor/github.com/golang/groupcache/lru",
|
|
"@org_golang_x_net//html/charset",
|
|
],
|
|
)
|