-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrepositories.bzl
31 lines (30 loc) · 1.05 KB
/
repositories.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
load("@bazel_gazelle//:deps.bzl", "go_repository")
def go_repositories():
go_repository(
name = "in_gopkg_yaml_v3",
build_file_proto_mode = "disable_global",
importpath = "gopkg.in/yaml.v3",
sum = "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=",
version = "v3.0.1",
)
go_repository(
name = "cc_mvdan_sh_v3",
build_file_proto_mode = "disable_global",
importpath = "mvdan.cc/sh/v3",
sum = "h1:lSTjdP/1xsddtaKfGg7Myu7DnlHItd3/M2tomOcNNBg=",
version = "v3.7.0",
)
go_repository(
name = "com_github_pborman_uuid",
build_file_proto_mode = "disable_global",
importpath = "github.com/pborman/uuid",
sum = "h1:+ZZIw58t/ozdjRaXh/3awHfmWRbzYxJoAdNJxe/3pvw=",
version = "v1.2.1",
)
go_repository(
name = "com_github_google_uuid",
build_file_proto_mode = "disable_global",
importpath = "github.com/google/uuid",
sum = "h1:b4Gk+7WdP/d3HZH8EJsZpvV7EtDOgaZLtnaNGIu1adA=",
version = "v1.0.0",
)