mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
34 lines
832 B
Python
34 lines
832 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "afero",
|
|
srcs = [
|
|
"afero.go",
|
|
"basepath.go",
|
|
"cacheOnReadFs.go",
|
|
"const_bsds.go",
|
|
"const_win_unix.go",
|
|
"copyOnWriteFs.go",
|
|
"httpFs.go",
|
|
"ioutil.go",
|
|
"lstater.go",
|
|
"match.go",
|
|
"memmap.go",
|
|
"os.go",
|
|
"path.go",
|
|
"readonlyfs.go",
|
|
"regexpfs.go",
|
|
"symlink.go",
|
|
"unionFile.go",
|
|
"util.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/spf13/afero",
|
|
importpath = "github.com/spf13/afero",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/spf13/afero/mem",
|
|
"//vendor/golang.org/x/text/transform",
|
|
"//vendor/golang.org/x/text/unicode/norm",
|
|
],
|
|
)
|