load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "verify", srcs = [ "reverseProxy.go", "verifier.go", "verifier_client.go", "verifier_config.go", "verifier_print_barcode.go", "verifier_scan_barcode.go", "verifier_start.go", "verifier_start_with_options.go", "verifier_ui_page.go", "verifier_view_barcode.go", "verify_callback.go", ], importpath = "edge-infra.dev/pkg/edge/iam/verify", visibility = ["//visibility:public"], deps = [ "//pkg/edge/iam/log", "//pkg/edge/iam/middleware", "//pkg/edge/iam/util", "//pkg/edge/iam/verify/templates", "//pkg/lib/logging", "@com_github_alecthomas_chroma//formatters/html", "@com_github_alecthomas_chroma//lexers", "@com_github_alecthomas_chroma//styles", "@com_github_boombuler_barcode//:barcode", "@com_github_boombuler_barcode//code128", "@com_github_boombuler_barcode//qr", "@com_github_coreos_go_oidc_v3//oidc", "@com_github_gin_gonic_gin//:gin", "@com_github_go_logr_logr//:logr", "@com_github_golang_jwt_jwt_v4//:jwt", "@com_github_micahparks_keyfunc//:keyfunc", "@org_golang_x_oauth2//:oauth2", ], )