mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-19 03:41:24 +00:00
14 lines
396 B
Python
14 lines
396 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "ed25519",
|
||
|
srcs = [
|
||
|
"ed25519.go",
|
||
|
"ed25519_go113.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/ed25519",
|
||
|
importpath = "golang.org/x/crypto/ed25519",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/golang.org/x/crypto/ed25519/internal/edwards25519"],
|
||
|
)
|