...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "postgres",
5 srcs = [
6 "doc.go",
7 "options.go",
8 "postgres.go",
9 ],
10 data = [
11 "//hack/tools:postgres.txz",
12 ],
13 importpath = "edge-infra.dev/test/f2/x/postgres",
14 visibility = ["//visibility:public"],
15 deps = [
16 "//pkg/edge/api/sql",
17 "//pkg/edge/api/sql/plugin",
18 "//pkg/lib/build/bazel",
19 "//pkg/lib/compression",
20 "//pkg/lib/gcp/cloudsql",
21 "//pkg/lib/logging",
22 "//test/f2",
23 "//test/f2/fctx",
24 "//test/f2/integration",
25 "@com_github_fergusstrange_embedded_postgres//:embedded-postgres",
26 "@com_github_golang_migrate_migrate_v4//database/postgres",
27 "@com_github_jackc_pgx_v4//stdlib",
28 "@com_github_stretchr_testify//require",
29 "@io_bazel_rules_go//go/runfiles:go_default_library",
30 ],
31)
View as plain text