mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-23 05:31:30 +00:00
ad0f7a5305
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies.
15 lines
403 B
Python
15 lines
403 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "cryptobyte",
|
|
srcs = [
|
|
"asn1.go",
|
|
"builder.go",
|
|
"string.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/cryptobyte",
|
|
importpath = "golang.org/x/crypto/cryptobyte",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/golang.org/x/crypto/cryptobyte/asn1"],
|
|
)
|