mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-14 01:41:23 +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.
14 lines
362 B
Python
14 lines
362 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "gofuzz",
|
|
srcs = [
|
|
"doc.go",
|
|
"fuzz.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/google/gofuzz",
|
|
importpath = "github.com/google/gofuzz",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/github.com/google/gofuzz/bytesource"],
|
|
)
|