19 lines
608 B
Python
19 lines
608 B
Python
load("@bazel_gazelle//:deps.bzl", "go_repository")
|
|
|
|
def go_dependencies():
|
|
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",
|
|
)
|