| Tim Windelschmidt | 1f4590b | 2025-07-29 23:05:36 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| 2 | |
| 3 | go_library( |
| 4 | name = "fmtsafe", |
| 5 | srcs = [ |
| 6 | "fmtsafe.go", |
| 7 | "functions.go", |
| 8 | ], |
| 9 | importpath = "source.monogon.dev/third_party/com_github_cockroachdb_cockroach/fmtsafe", |
| 10 | visibility = ["//visibility:public"], |
| 11 | deps = [ |
| 12 | "//third_party/com_github_cockroachdb_cockroach/errwrap", |
| 13 | "@org_golang_x_tools//go/analysis", |
| 14 | "@org_golang_x_tools//go/analysis/passes/inspect", |
| 15 | "@org_golang_x_tools//go/ast/inspector", |
| 16 | "@org_golang_x_tools//go/types/typeutil", |
| 17 | ], |
| 18 | ) |