peridot/vendor/github.com/gobwas/glob/compiler/BUILD.bazel
2022-07-07 22:13:21 +02:00

15 lines
465 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "compiler",
srcs = ["compiler.go"],
importmap = "peridot.resf.org/vendor/github.com/gobwas/glob/compiler",
importpath = "github.com/gobwas/glob/compiler",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/gobwas/glob/match",
"//vendor/github.com/gobwas/glob/syntax/ast",
"//vendor/github.com/gobwas/glob/util/runes",
],
)