Some checks failed
CI / build (push) Failing after 12s
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
28 lines
874 B
Text
28 lines
874 B
Text
load("@rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_binary(
|
|
name = "force_go_deps",
|
|
embed = [":third_party_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "third_party_lib",
|
|
srcs = ["force_go_deps.go"],
|
|
data = [
|
|
"@com_github_steveyegge_gastown//cmd/gt",
|
|
],
|
|
importpath = "forgejo.csbx.dev/acmcarther/yesod/third_party",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"@com_github_amikos_tech_chroma_go//:chroma-go",
|
|
"@com_github_gofrs_flock//:flock",
|
|
"@com_github_google_uuid//:uuid",
|
|
"@com_github_gorilla_mux//:mux",
|
|
"@com_github_gorilla_websocket//:websocket",
|
|
"@com_github_mholt_archiver_v3//:archiver",
|
|
"@com_github_stretchr_testify//:testify",
|
|
"@io_nhooyr_websocket//:websocket",
|
|
"@org_golang_google_api//:api",
|
|
],
|
|
)
|