mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-15 02:01: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.
18 lines
485 B
Python
18 lines
485 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "jsonschema",
|
|
srcs = [
|
|
"base.go",
|
|
"display.go",
|
|
"models.go",
|
|
"operations.go",
|
|
"reader.go",
|
|
"writer.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/google/gnostic-models/jsonschema",
|
|
importpath = "github.com/google/gnostic-models/jsonschema",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/gopkg.in/yaml.v3:yaml_v3"],
|
|
)
|