mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 22:21:25 +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.
24 lines
738 B
Python
24 lines
738 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "compiler",
|
|
srcs = [
|
|
"context.go",
|
|
"error.go",
|
|
"extensions.go",
|
|
"helpers.go",
|
|
"main.go",
|
|
"reader.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/google/gnostic-models/compiler",
|
|
importpath = "github.com/google/gnostic-models/compiler",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/google/gnostic-models/extensions",
|
|
"//vendor/github.com/google/gnostic-models/jsonschema",
|
|
"//vendor/gopkg.in/yaml.v3:yaml_v3",
|
|
"@com_github_golang_protobuf//proto:go_default_library",
|
|
"@com_github_golang_protobuf//ptypes/any",
|
|
],
|
|
)
|