This commit is contained in:
Christian Nieves
2023-07-12 21:39:47 -05:00
parent d0dc725d64
commit 28fae2c39d
16 changed files with 157 additions and 19 deletions

View File

@ -1,2 +1,18 @@
load("@bazel_gazelle//:deps.bzl", "go_repository")
def go_dependencies():
pass
go_repository(
name = "com_github_davecgh_go_spew",
build_file_proto_mode = "disable_global",
importpath = "github.com/davecgh/go-spew",
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
version = "v1.1.1",
)
go_repository(
name = "com_github_mattn_go_sqlite3",
build_file_proto_mode = "disable_global",
importpath = "github.com/mattn/go-sqlite3",
sum = "h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM=",
version = "v1.14.17",
)