load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "postgres", srcs = [ "doc.go", "options.go", "postgres.go", ], data = [ "//hack/tools:postgres.txz", ], importpath = "edge-infra.dev/test/f2/x/postgres", visibility = ["//visibility:public"], deps = [ "//pkg/edge/api/sql", "//pkg/edge/api/sql/plugin", "//pkg/lib/build/bazel", "//pkg/lib/compression", "//pkg/lib/gcp/cloudsql", "//pkg/lib/logging", "//test/f2", "//test/f2/fctx", "//test/f2/integration", "@com_github_fergusstrange_embedded_postgres//:embedded-postgres", "@com_github_golang_migrate_migrate_v4//database/postgres", "@com_github_jackc_pgx_v4//stdlib", "@com_github_stretchr_testify//require", "@io_bazel_rules_go//go/runfiles:go_default_library", ], )