mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-21 20:51:26 +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.
27 lines
686 B
Python
27 lines
686 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("@raw_ts_library//:index.bzl", "raw_ts_library")
|
|
|
|
go_library(
|
|
name = "hydra",
|
|
srcs = ["autosignup.go"],
|
|
importpath = "peridot.resf.org/hydra/pkg/hydra",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//servicecatalog",
|
|
"//utils",
|
|
"//vendor/github.com/ory/hydra-client-go/v2:hydra-client-go",
|
|
"//vendor/github.com/sirupsen/logrus",
|
|
],
|
|
)
|
|
|
|
raw_ts_library(
|
|
name = "hydrajs",
|
|
srcs = ["autosignup.mjs"],
|
|
module_name = "hydra/pkg/hydra",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@npm//@ory/hydra-client",
|
|
"@npm//await-to-js",
|
|
],
|
|
)
|