@@ -2,15 +2,67 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2
2
3
3
http_archive (
4
4
name = "io_bazel_rules_go" ,
5
- sha256 = "7904dbecbaffd068651916dce77ff3437679f9d20e1a7956bff43826e7645fcc " ,
5
+ sha256 = "685052b498b6ddfe562ca7a97736741d87916fe536623afb7da2824c0211c369 " ,
6
6
urls = [
7
- "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.25.1/rules_go-v0.25.1.tar.gz" ,
8
- "https://github.com/bazelbuild/rules_go/releases/download/v0.25.1/rules_go-v0.25.1.tar.gz" ,
7
+ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.33.0/rules_go-v0.33.0.zip" ,
8
+ "https://github.com/bazelbuild/rules_go/releases/download/v0.33.0/rules_go-v0.33.0.zip" ,
9
+ ],
10
+ )
11
+
12
+ http_archive (
13
+ name = "bazel_gazelle" ,
14
+ sha256 = "5982e5463f171da99e3bdaeff8c0f48283a7a5f396ec5282910b9e8a49c0dd7e" ,
15
+ urls = [
16
+ "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz" ,
17
+ "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz" ,
9
18
],
10
19
)
11
20
12
21
load ("@io_bazel_rules_go//go:deps.bzl" , "go_rules_dependencies" , "go_register_toolchains" )
22
+ load ("@bazel_gazelle//:deps.bzl" , "gazelle_dependencies" , "go_repository" )
23
+
24
+ go_repository (
25
+ name = "com_github_davecgh_go_spew" ,
26
+ build_file_proto_mode = "disable_global" ,
27
+ importpath = "github.com/davecgh/go-spew" ,
28
+ sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=" ,
29
+ version = "v1.1.1" ,
30
+ )
31
+
32
+ go_repository (
33
+ name = "com_github_pmezard_go_difflib" ,
34
+ build_file_proto_mode = "disable_global" ,
35
+ importpath = "github.com/pmezard/go-difflib" ,
36
+ sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=" ,
37
+ version = "v1.0.0" ,
38
+ )
39
+
40
+ go_repository (
41
+ name = "com_github_stretchr_testify" ,
42
+ build_file_proto_mode = "disable_global" ,
43
+ importpath = "github.com/stretchr/testify" ,
44
+ sum = "h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=" ,
45
+ version = "v1.8.0" ,
46
+ )
47
+
48
+ go_repository (
49
+ name = "in_gopkg_yaml_v3" ,
50
+ build_file_proto_mode = "disable_global" ,
51
+ importpath = "gopkg.in/yaml.v3" ,
52
+ sum = "h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=" ,
53
+ version = "v3.0.0-20200313102051-9f266ea9e77c" ,
54
+ )
55
+
56
+ go_repository (
57
+ name = "com_github_stretchr_objx" ,
58
+ build_file_proto_mode = "disable_global" ,
59
+ importpath = "github.com/stretchr/objx" ,
60
+ sum = "h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=" ,
61
+ version = "v0.4.0" ,
62
+ )
13
63
14
64
go_rules_dependencies ()
15
65
16
- go_register_toolchains (version = "1.16" )
66
+ go_register_toolchains (version = "1.16" )
67
+
68
+ gazelle_dependencies ()
0 commit comments