Automatically prune unused Go dependencies
The way gazelle was set up meant that it would never prune any
dependencies from go_deps.bzl. I'm not exactly sure _why_, but that's
the way it behaved.
The new approach here in this patch is to essentially null out
go_deps.bzl and have gazelle regenerate it from scratch.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Ic94020df816afa0df798b19b16b11272579793be
diff --git a/scouting/BUILD b/scouting/BUILD
index 8188a20..836e5c3 100644
--- a/scouting/BUILD
+++ b/scouting/BUILD
@@ -13,5 +13,5 @@
importpath = "github.com/frc971/971-Robot-Code/scouting",
target_compatible_with = ["@platforms//cpu:x86_64"],
visibility = ["//visibility:private"],
- deps = ["@com_github_mattn_go_sqlite3//:go_default_library"],
+ deps = ["@com_github_mattn_go_sqlite3//:go-sqlite3"],
)