mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-16 18:51: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.
32 lines
949 B
Python
32 lines
949 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "impl",
|
|
srcs = [
|
|
"oauth2.go",
|
|
"server.go",
|
|
"user.go",
|
|
"utils.go",
|
|
],
|
|
importpath = "peridot.resf.org/obsidian/impl/v1",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//obsidian/db",
|
|
"//obsidian/db/models",
|
|
"//obsidian/proto/v1:pb",
|
|
"//proto:common",
|
|
"//servicecatalog",
|
|
"//utils",
|
|
"//vendor/github.com/coreos/go-oidc/v3/oidc",
|
|
"//vendor/github.com/gogo/status",
|
|
"//vendor/github.com/ory/hydra-client-go/v2:hydra-client-go",
|
|
"//vendor/github.com/sirupsen/logrus",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//codes",
|
|
"@org_golang_google_grpc//metadata",
|
|
"@org_golang_google_grpc//status",
|
|
"@org_golang_x_oauth2//:oauth2",
|
|
"@org_golang_x_oauth2//google",
|
|
],
|
|
)
|