4
0
Fork 0
mirror of https://github.com/rocky-linux/peridot.git synced 2025-01-10 21:26:51 +00:00
peridot/vendor/github.com/pborman/uuid/BUILD.bazel

23 lines
525 B
Text
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "uuid",
srcs = [
"dce.go",
"doc.go",
"hash.go",
"marshal.go",
"node.go",
"sql.go",
"time.go",
"util.go",
"uuid.go",
"version1.go",
"version4.go",
],
importmap = "peridot.resf.org/vendor/github.com/pborman/uuid",
importpath = "github.com/pborman/uuid",
visibility = ["//visibility:public"],
deps = ["//vendor/github.com/google/uuid"],
)