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

14 lines
384 B
Python

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