-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
149 lines (123 loc) · 3.68 KB
/
WORKSPACE
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.1/rules_go-v0.22.1.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.22.1/rules_go-v0.22.1.tar.gz",
],
sha256 = "e6a6c016b0663e06fa5fccf1cd8152eab8aa8180c583ec20c872f4f9953a7ac5",
)
http_archive(
name = "bazel_gazelle",
urls = [
"https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
],
sha256 = "d8c45ee70ec39a57e7a05e5027c32b1576cc7f16d9dd37135b0eddde45cf1b10",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains(go_version = "1.14")
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
gazelle_dependencies()
go_repository(
name = "com_github_bouk_monkey",
importpath = "github.com/bouk/monkey",
tag = "v1.0.1",
)
go_repository(
name = "com_github_burntsushi_toml",
importpath = "github.com/BurntSushi/toml",
tag = "v0.3.1",
)
go_repository(
name = "com_github_davecgh_go_spew",
importpath = "github.com/davecgh/go-spew",
tag = "v1.1.1",
)
go_repository(
name = "com_github_google_go_querystring",
importpath = "github.com/google/go-querystring",
tag = "v1.0.0",
)
go_repository(
name = "com_github_kr_pretty",
importpath = "github.com/kr/pretty",
tag = "v0.1.0",
)
go_repository(
name = "com_github_kr_pty",
importpath = "github.com/kr/pty",
tag = "v1.1.1",
)
go_repository(
name = "com_github_kr_text",
importpath = "github.com/kr/text",
tag = "v0.1.0",
)
go_repository(
name = "com_github_logrusorgru_aurora",
commit = "a7b3b318ed4e",
importpath = "github.com/logrusorgru/aurora",
)
go_repository(
name = "com_github_pmezard_go_difflib",
importpath = "github.com/pmezard/go-difflib",
tag = "v1.0.0",
)
go_repository(
name = "com_github_schallert_iso8601",
commit = "d51701471974",
importpath = "github.com/schallert/iso8601",
)
go_repository(
name = "com_github_stretchr_objx",
importpath = "github.com/stretchr/objx",
tag = "v0.1.0",
)
go_repository(
name = "com_github_stretchr_testify",
importpath = "github.com/stretchr/testify",
tag = "v1.3.0",
)
go_repository(
name = "com_github_urfave_cli",
importpath = "github.com/urfave/cli",
remote = "https://github.com/michaeljs1990/cli",
commit = "b0494d5188b484c900914767a3c791c2e93c0858",
vcs = "git",
)
go_repository(
name = "in_gopkg_check_v1",
commit = "788fd7840127",
importpath = "gopkg.in/check.v1",
)
go_repository(
name = "in_gopkg_tumblr_go_collins_v0",
importpath = "gopkg.in/tumblr/go-collins.v0",
remote = "https://github.com/michaeljs1990/go-collins",
commit = "daf3b4014fd660702454605ab6c08d7b903a9851",
vcs = "git",
)
go_repository(
name = "in_gopkg_urfave_cli_v1",
importpath = "gopkg.in/urfave/cli.v1",
remote = "https://github.com/michaeljs1990/cli",
commit = "b0494d5188b484c900914767a3c791c2e93c0858",
vcs = "git",
)
go_repository(
name = "in_gopkg_yaml_v2",
importpath = "gopkg.in/yaml.v2",
tag = "v2.2.2",
)
go_repository(
name = "ke_bou_monkey",
importpath = "bou.ke/monkey",
tag = "v1.0.1",
)
go_repository(
name = "org_golang_x_crypto",
importpath = "golang.org/x/crypto",
commit = "78000ba7a073cafc0278790f6bce552a0f25850e",
)